commit 48043c4
Michael Forney
·
2025-04-30 08:13:42 +0000 UTC
parent 81b6354
linux-headers: Fix extract patterns We need trailing slashes for our pax implementation, and the 'entry' subdirectory was missed in one pattern.
1 files changed,
+3,
-3
+3,
-3
1@@ -17,9 +17,9 @@ fi
2 read -r _ archive <sha256
3 sh "$OLDPWD/scripts/extract.sh" "$archive" -s ',^[^/]*,src,' \
4 'linux-*/Makefile' \
5- 'linux-*/arch/*/include/uapi' \
6- 'linux-*/arch/*/syscalls' \
7- 'linux-*/include/uapi' \
8+ 'linux-*/arch/*/include/uapi/' \
9+ 'linux-*/arch/*/entry/syscalls/' \
10+ 'linux-*/include/uapi/' \
11 'linux-*/scripts/unifdef.c'
12
13 if [ -d patch ] ; then