diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-11 17:51:46 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-11 17:51:46 +0100 |
commit | 153402bb445d60fb0712f849ac1d8b7945b2a84a (patch) | |
tree | bfa1daf25b8023fc885f39a97750c882b2fc3b60 /scripts | |
parent | 69b11e62e876a4bf4721373e905d4228dac35e85 (diff) |
scripts/tar no longer required
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index ab9c4f2cf..0c545d7c2 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -211,7 +211,7 @@ if ! T=$(mktemp -d /tmp/openadk.XXXXXXXXXX); then print -u2 Error creating temporary directory. exit 1 fi -"$TOPDIR/scripts/tar" -xOzf "$src" ./usr/share/grub-bin/core.img >"$T/core.img" +tar -xOzf "$src" ./usr/share/grub-bin/core.img >"$T/core.img" integer coreimgsz=$($statcmd "$T/core.img") if (( coreimgsz < 1024 )); then print -u2 core.img is probably too small: $coreimgsz |