diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-04 13:15:02 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-06 09:15:23 +0200 |
commit | 062c92e812d1550cd416aaf2fa67013d2020daec (patch) | |
tree | e3d6308517fbe8cc59a59029181fce5b6552f97e /scripts/tar | |
parent | 289f3efaa923b78ebda9f40a973a0789781557db (diff) |
fix tar build, when gnu tar is missing
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Diffstat (limited to 'scripts/tar')
-rwxr-xr-x | scripts/tar | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/tar b/scripts/tar deleted file mode 100755 index b696d5b92..000000000 --- a/scripts/tar +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -# This file is part of the OpenADK project. OpenADK is copyrighted -# material, please see the LICENCE file in the top-level directory. - -if [ -z "$(which gtar 2>/dev/null)" ];then - if [ -x /bin/tar ];then - /bin/tar "$@" - else - /usr/bin/tar "$@" - fi -else - gtar "$@" -fi |