aboutsummaryrefslogtreecommitdiff
path: root/release/scripts/lib32-install.sh
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2006-08-28 08:13:56 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2006-08-28 08:13:56 +0000
commit8163990348094222a08bec44b2f5cb57dac60926 (patch)
treea890c19061b13a17e46e8717e33d121ef098f3bf /release/scripts/lib32-install.sh
parentc3a7e3131482140cffd4c9b4e4ca55c0e6a3e260 (diff)
downloadsrc-8163990348094222a08bec44b2f5cb57dac60926.tar.gz
src-8163990348094222a08bec44b2f5cb57dac60926.zip
Provide the installation script for the lib32 distribution.
Notes
Notes: svn path=/head/; revision=161689
Diffstat (limited to 'release/scripts/lib32-install.sh')
-rw-r--r--release/scripts/lib32-install.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/release/scripts/lib32-install.sh b/release/scripts/lib32-install.sh
new file mode 100644
index 000000000000..c6f732d0138b
--- /dev/null
+++ b/release/scripts/lib32-install.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+if [ "`id -u`" != "0" ]; then
+ echo "Sorry, this must be done as root."
+ exit 1
+fi
+cat lib32.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
+exit 0