diff options
Diffstat (limited to 'scripts/tar')
-rwxr-xr-x | scripts/tar | 6 |
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 |