From 6f0a999a9c8ce5dcb214662172967471c0449083 Mon Sep 17 00:00:00 2001 From: "iap10@freefall.cl.cam.ac.uk" Date: Sun, 22 May 2005 10:30:02 +0000 Subject: bitkeeper revision 1.1159.258.152 (42905f2aihfbXcLOp47iveS8Fn06aQ) Fix install.sh script so that it doesn't dereference all symlinks. Signed-off-by: ian@xensource.com --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'install.sh') 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..." -- cgit v1.2.3