diff options
author | jkh <jkh@FreeBSD.org> | 1996-12-24 00:23:43 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-12-24 00:23:43 +0000 |
commit | 010a4ef701b1e3905afc01e958ccee730a120db2 (patch) | |
tree | fc862caf1620dde4774c4fef95813467582679a8 /release | |
parent | 0426c0af88896ae0e7b7809d8729d78595b55e26 (diff) | |
download | FreeBSD-src-010a4ef701b1e3905afc01e958ccee730a120db2.zip FreeBSD-src-010a4ef701b1e3905afc01e958ccee730a120db2.tar.gz |
Bring these up-to-date with Peter's compat distribution changes.
Diffstat (limited to 'release')
-rwxr-xr-x | release/scripts/compat1x-install.sh | 2 | ||||
-rwxr-xr-x | release/scripts/compat20-install.sh | 2 | ||||
-rwxr-xr-x | release/scripts/compat21-install.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/compat1x-install.sh b/release/scripts/compat1x-install.sh index 0361157..e0df742 100755 --- a/release/scripts/compat1x-install.sh +++ b/release/scripts/compat1x-install.sh @@ -4,5 +4,5 @@ if [ "`id -u`" != "0" ]; then echo "Sorry, this must be done as root." exit 1 fi -tar --unlink -xpzf compat1x.tgz -C / +cat compat1x.?? | tar --unlink -xpzf - -C / exit 0 diff --git a/release/scripts/compat20-install.sh b/release/scripts/compat20-install.sh index 9c84c14..0ad5ea66 100755 --- a/release/scripts/compat20-install.sh +++ b/release/scripts/compat20-install.sh @@ -4,5 +4,5 @@ if [ "`id -u`" != "0" ]; then echo "Sorry, this must be done as root." exit 1 fi -tar --unlink -xpzf compat20.tgz -C / +cat compat20.?? | tar --unlink -xpzf - -C / exit 0 diff --git a/release/scripts/compat21-install.sh b/release/scripts/compat21-install.sh index f6cc9cb..abf9bc2 100755 --- a/release/scripts/compat21-install.sh +++ b/release/scripts/compat21-install.sh @@ -4,5 +4,5 @@ if [ "`id -u`" != "0" ]; then echo "Sorry, this must be done as root." exit 1 fi -tar --unlink -xpzf compat21.tgz -C / +cat compat21.?? | tar --unlink -xpzf - -C / exit 0 |