summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/extract.sh9
-rw-r--r--scripts/fetch-curl.sh2
2 files changed, 2 insertions, 9 deletions
diff --git a/scripts/extract.sh b/scripts/extract.sh
index 4a1ad044..5205bee0 100644
--- a/scripts/extract.sh
+++ b/scripts/extract.sh
@@ -8,11 +8,4 @@ case $file in
*) exit 0
esac
-if command -v bsdtar >/dev/null; then
- exec bsdtar -xf "$file" "$@"
-elif command -v pax >/dev/null; then
- "$tool" -d -c "$file" | pax -r "$@"
-else
- printf '%s: bsdtar or pax is required' "$0" >&2
- exit 1
-fi
+"$tool" -d -c "$file" | "$PAX" -r "$@"
diff --git a/scripts/fetch-curl.sh b/scripts/fetch-curl.sh
index 16cb88d7..0ff3d9a1 100644
--- a/scripts/fetch-curl.sh
+++ b/scripts/fetch-curl.sh
@@ -20,7 +20,7 @@ if ! sh "$OLDPWD/scripts/checksum.sh" -c sha256 2>/dev/null ; then
fi
while read -r _ archive ; do
- sh "$OLDPWD/scripts/extract.sh" "$archive" -s ',^[^/]*,src,' '*/*'
+ sh "$OLDPWD/scripts/extract.sh" "$archive" -s ',^[^/]*,src,'
done <sha256
if [ -d patch ] ; then