summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfind-libdeps.sh2
-rwxr-xr-xfind-libprovides.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/find-libdeps.sh b/find-libdeps.sh
index ca9d232..4122c2b 100755
--- a/find-libdeps.sh
+++ b/find-libdeps.sh
@@ -29,7 +29,7 @@ else
tmpdir=$(mktemp -d /tmp/find-sodeps.XXXXXXX)
trap "cleanup" EXIT INT TERM
- tar -C $tmpdir -xf "$1"
+ bsdtar -C $tmpdir -xf "$1"
cd $tmpdir
fi
diff --git a/find-libprovides.sh b/find-libprovides.sh
index 2005080..cfd6f6c 100755
--- a/find-libprovides.sh
+++ b/find-libprovides.sh
@@ -22,7 +22,7 @@ else
tmpdir=$(mktemp -d /tmp/find-sodeps.XXXXXXX)
trap "rm -rf '$tmpdir'" EXIT INT TERM
- tar -C $tmpdir -xf "$1"
+ bsdtar -C $tmpdir -xf "$1" --include="*.so*"
cd $tmpdir
fi