From 6aa739421d10f4c0ce2c090798484af46aa6a4d0 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Fri, 17 Jun 2011 20:50:02 -0400 Subject: Fix symlinks in bzip2 install --- stage1 | 7 +++++++ 1 file changed, 7 insertions(+) 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 ) -- cgit