From e81e528835b229f805c0cfdae0731147471ae554 Mon Sep 17 00:00:00 2001 From: "kaf24@freefall.cl.cam.ac.uk" Date: Tue, 2 Nov 2004 17:57:41 +0000 Subject: bitkeeper revision 1.1159.1.338 (4187ca95yoh3y8SwBJw4uTmgIxLCTw) A new install script to install from the intermediate 'install' subdir. Also now a bit more careful in use of 'cp -a'. When installing to system-wide directories we probably do not want to preserve ownership of the random unprivileged user that originally built the binaries. The user who does the install (probably root) is the correct person to own the target files. --- install.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 install.sh (limited to 'install.sh') diff --git a/install.sh b/install.sh new file mode 100755 index 0000000000..2c8f38f06d --- /dev/null +++ b/install.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +if ! [ -d ./install ]; then + echo "ERROR: You must build Xen before it can be installed." + echo " For example, 'make dist'." + exit 1 +fi + +prefix='/' +if [ $# -ne 0 ]; then + prefix=$1 +fi + +if ! [ -d $prefix ]; then + echo "ERROR: You must specify a valid install directory." + echo " The specified directory '$prefix' is not valid." + exit 1 +fi + +echo "Installing Xen to '$prefix'..." +cp -fdR ./install/* $prefix +echo "All done." + +exit 0 -- cgit v1.2.3