summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 )