From 81c4c7c2cf2c5ff27a6c02e41bf484a53ea942c2 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 16 Sep 2009 17:22:57 +0200 Subject: make adk compile system work on shuttle - add some missing packages like cpio, lzma and gnu wget - make microperl more featureful, needed for kernel-header installation - make a dependency to perl - fix header installation for $libc-dev package - fix 64bit uclibc setup, simplify gcc patches and totally unrelated - add preliminary kvm and libvirt support (not tested) --- scripts/tar | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts/tar') diff --git a/scripts/tar b/scripts/tar index 60c5057da..5d6db28b4 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 /usr/bin/tar ];then + /usr/bin/tar "$@" + else + /bin/tar "$@" + fi else gtar "$@" fi -- cgit v1.2.3