aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authoriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>2005-05-22 10:30:02 +0000
committeriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>2005-05-22 10:30:02 +0000
commit6f0a999a9c8ce5dcb214662172967471c0449083 (patch)
tree2305b22b676e79c978dda7059d89726b3f81e2a9 /install.sh
parent0f87aa7794131e2ceedab02e0a97b0c4ea0f3a53 (diff)
downloadxen-6f0a999a9c8ce5dcb214662172967471c0449083.tar.gz
xen-6f0a999a9c8ce5dcb214662172967471c0449083.tar.bz2
xen-6f0a999a9c8ce5dcb214662172967471c0449083.zip
bitkeeper revision 1.1159.258.152 (42905f2aihfbXcLOp47iveS8Fn06aQ)RELEASE-2.0.6
Fix install.sh script so that it doesn't dereference all symlinks. Signed-off-by: ian@xensource.com
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 7da84dafad..295f084374 100755
--- a/install.sh
+++ b/install.sh
@@ -23,7 +23,8 @@ if ! [ -d $dst ]; then
fi
echo "Installing Xen from '$src' to '$dst'..."
-cp -fdRL $src/* $dst
+(cd $src; tar -cf - --exclude etc/init.d * ) | tar -C $dst -xf -
+cp -fdRL $src/etc/init.d/* $dst/etc/init.d/
echo "All done."
echo "Checking to see whether prerequisite tools are installed..."