summaryrefslogtreecommitdiff
path: root/distrib/pc532/floppies/inst-common/dot.commonutils
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-06-29 05:54:29 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-06-29 05:54:29 +0000
commite7ba098a6dde243a90180787f3c0999eece7efec (patch)
tree7c71e86e2ca91bceb37e74bc210fede50bdc95e4 /distrib/pc532/floppies/inst-common/dot.commonutils
parent6765702568d2cce079bc23c1855e40ba4632e05e (diff)
Update for removal of GNU tar(1)
Diffstat (limited to 'distrib/pc532/floppies/inst-common/dot.commonutils')
-rw-r--r--distrib/pc532/floppies/inst-common/dot.commonutils8
1 files changed, 4 insertions, 4 deletions
diff --git a/distrib/pc532/floppies/inst-common/dot.commonutils b/distrib/pc532/floppies/inst-common/dot.commonutils
index c177aa9318e..95261cc05d2 100644
--- a/distrib/pc532/floppies/inst-common/dot.commonutils
+++ b/distrib/pc532/floppies/inst-common/dot.commonutils
@@ -1,4 +1,4 @@
-# $OpenBSD: dot.commonutils,v 1.4 1996/04/25 21:30:35 niklas Exp $
+# $OpenBSD: dot.commonutils,v 1.5 1996/06/29 05:54:20 tholo Exp $
#
# Copyright (c) 1994 Christopher G. Demetriou
# All rights reserved.
@@ -39,7 +39,7 @@ if [ ! -f /etc/fstab ]; then
fi
# counter for possible shared library confusion
-TAR=/usr/bin/tar
+TAR=/bin/tar
GUNZIP=/usr/bin/gunzip
Set_tmp_dir()
@@ -110,7 +110,7 @@ Load_tape()
echo -n "continue..."
read foo
echo "Extracting files from the tape..."
- $TAR --unlink -xvpf /dev/$which
+ $TAR -xvpf /dev/$which
echo "Done."
}
@@ -127,7 +127,7 @@ Extract()
tarverbose=
;;
esac
- cat "$1"* | $GUNZIP | (cd $dest_dir ; $TAR --unlink -xp"$tarverbose"f - )
+ cat "$1"* | $GUNZIP | (cd $dest_dir ; $TAR -xp"$tarverbose"f - )
}
xd()