commit: d70f79aeb3e6f62a093d56180654baf69e70ad62
parent 06624ed7867c902e0ca44b5ca381e9d4dc157e14
Author: Michael Forney <mforney@mforney.org>
Date: Wed, 30 Apr 2025 01:13:42 -0700
linux-headers: Fix extract patterns
We need trailing slashes for our pax implementation, and the 'entry'
subdirectory was missed in one pattern.
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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