summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-11-30 21:47:43 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-11-30 21:47:43 +0100
commit066c41d82e2e3838e274a83902e8691df6b84a4f (patch)
treedf1a91b5c78b4fc2caf2f324571d94d95b4d9fe5 /scripts
parent5265f6b35db3d3cd1af9cb64936ada0e62ed9f32 (diff)
avoid gnu tar features, use cpio instead.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/scan-tools.sh12
1 files changed, 1 insertions, 11 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh
index ed939d9ca..c86239d39 100644
--- a/scripts/scan-tools.sh
+++ b/scripts/scan-tools.sh
@@ -102,21 +102,11 @@ fi
rm test 2>/dev/null
if ! which tar >/dev/null 2>&1; then
- echo You must install GNU tar to continue.
+ echo You must install tar to continue.
echo
out=1
fi
-if ! (tar --version | grep GNU) >/dev/null 2>&1;then
- if ! which gtar >/dev/null 2>&1; then
- if ! which gnutar >/dev/null 2>&1; then
- echo You must install GNU tar to continue.
- echo
- out=1
- fi
- fi
-fi
-
if ! which gzip >/dev/null 2>&1; then
echo You must install gzip to continue.
echo