From 03b1ba77c3803562e718985db1fb542b022467aa Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Tue, 24 Dec 1996 00:23:43 +0000 Subject: [PATCH] Bring these up-to-date with Peter's compat distribution changes. --- release/scripts/compat1x-install.sh | 2 +- release/scripts/compat20-install.sh | 2 +- 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 036115732329..e0df742efda8 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 9c84c14dc989..0ad5ea663a43 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 f6cc9cbda06b..abf9bc2a3669 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