summaryrefslogtreecommitdiff
path: root/scripts/tar
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/tar')
-rwxr-xr-xscripts/tar6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/tar b/scripts/tar
index 60c5057da..b696d5b92 100755
--- a/scripts/tar
+++ b/scripts/tar
@@ -3,7 +3,11 @@
# material, please see the LICENCE file in the top-level directory.
if [ -z "$(which gtar 2>/dev/null)" ];then
- /bin/tar "$@"
+ if [ -x /bin/tar ];then
+ /bin/tar "$@"
+ else
+ /usr/bin/tar "$@"
+ fi
else
gtar "$@"
fi