Commit: e3f7769d3e42a7c66f38b30dac31b3c979107977
Parent: d56408b89c469934a695d0bb36e5dcf1871691df
Author: Michael Forney
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/devel/linux-headers/fetch.sh b/pkg/devel/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