summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2011-06-17 20:50:02 -0400
committerDJ Delorie <dj@delorie.com>2011-06-17 20:50:02 -0400
commit6aa739421d10f4c0ce2c090798484af46aa6a4d0 (patch)
treededa87a274e6a64a610a0f38d2a12f546b202f05
parent8315c025cfc96b2277663db13ea0ae0975651918 (diff)
downloadbootstrap-6aa739421d10f4c0ce2c090798484af46aa6a4d0.tar.gz
bootstrap-6aa739421d10f4c0ce2c090798484af46aa6a4d0.tar.xz
bootstrap-6aa739421d10f4c0ce2c090798484af46aa6a4d0.zip
Fix symlinks in bzip2 install
-rwxr-xr-xstage17
1 files changed, 7 insertions, 0 deletions
diff --git a/stage1 b/stage1
index bda84c9..becdcb0 100755
--- a/stage1
+++ b/stage1
@@ -705,6 +705,13 @@ EOF
RANLIB=${TARGET}-ranlib \
PREFIX=${ROOTFS} \
install
+ # the installation makes symbols links with our host's paths
+ # in them, we need to redo those.
+ cd $ROOTFS/bin
+ rm bzless; ln -s bzmore bzless
+ rm bzfgrep; ln -s bzgrep bzfgrep
+ rm bzcmp; ln -s bzdiff bzcmp
+ rm bzegrep; ln -s bzgrep bzegrep
;;
stage2 )