diff options
| author | Michael Forney <mforney@mforney.org> | 2025-04-30 01:13:42 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2025-04-30 01:13:42 -0700 |
| commit | d70f79aeb3e6f62a093d56180654baf69e70ad62 (patch) | |
| tree | c8f725a8537de935848c54153837b78335f9688a /pkg/linux-headers | |
| parent | 06624ed7867c902e0ca44b5ca381e9d4dc157e14 (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.sh | 6 |
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 |
