From d790bc70965b42cf8dbc1bb21dd836117e366fdf Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Tue, 20 Apr 1999 11:42:51 +0000 Subject: [PATCH] Add script to install the compat3x distribution. --- release/scripts/compat3x-install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 release/scripts/compat3x-install.sh diff --git a/release/scripts/compat3x-install.sh b/release/scripts/compat3x-install.sh new file mode 100755 index 000000000000..9d79d0109ff9 --- /dev/null +++ b/release/scripts/compat3x-install.sh @@ -0,0 +1,8 @@ +#!/bin/sh +# +if [ "`id -u`" != "0" ]; then + echo "Sorry, this must be done as root." + exit 1 +fi +cat compat3x.?? | tar --unlink -xpzf - -C ${DESTDIR:-/} +exit 0