summaryrefslogtreecommitdiff
path: root/pkg/linux-headers
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2025-04-30 01:13:42 -0700
committerMichael Forney <mforney@mforney.org>2025-04-30 01:13:42 -0700
commitd70f79aeb3e6f62a093d56180654baf69e70ad62 (patch)
treec8f725a8537de935848c54153837b78335f9688a /pkg/linux-headers
parent06624ed7867c902e0ca44b5ca381e9d4dc157e14 (diff)
linux-headers: Fix extract patterns
We need trailing slashes for our pax implementation, and the 'entry' subdirectory was missed in one pattern.
Diffstat (limited to 'pkg/linux-headers')
-rw-r--r--pkg/linux-headers/fetch.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/linux-headers/fetch.sh b/pkg/linux-headers/fetch.sh
index 0866f9b7..5c277d62 100644
--- a/pkg/linux-headers/fetch.sh
+++ b/pkg/linux-headers/fetch.sh
@@ -17,9 +17,9 @@ fi
read -r _ archive <sha256
sh "$OLDPWD/scripts/extract.sh" "$archive" -s ',^[^/]*,src,' \
'linux-*/Makefile' \
- 'linux-*/arch/*/include/uapi' \
- 'linux-*/arch/*/syscalls' \
- 'linux-*/include/uapi' \
+ 'linux-*/arch/*/include/uapi/' \
+ 'linux-*/arch/*/entry/syscalls/' \
+ 'linux-*/include/uapi/' \
'linux-*/scripts/unifdef.c'
if [ -d patch ] ; then