# HG changeset patch # User Rob Landley # Date 1424036499 21600 # Node ID fbc625ba4098ee6d0a3e8ef200c438d06fef3a60 # Parent 4921adb23771bde7fb5943a50f44834eadcd2882 Move man directory and delete info directory so lfs-bootstrap setup doesn't conflict with them when native-compiler built with SKIP_STRIP. diff -r 4921adb23771 -r fbc625ba4098 native-compiler.sh --- a/native-compiler.sh Sat Feb 14 13:55:53 2015 -0600 +++ b/native-compiler.sh Sun Feb 15 15:41:39 2015 -0600 @@ -56,9 +56,10 @@ fi # Delete some unneeded files and strip everything else +mv "$STAGE_DIR"/{man,share/man} && +rm -rf "$STAGE_DIR"/{info,libexec/gcc/*/*/install-tools} || dienow if [ -z "$SKIP_STRIP" ] then - rm -rf "$STAGE_DIR"/{info,man,libexec/gcc/*/*/install-tools} "${ARCH}-strip" --strip-unneeded "$STAGE_DIR"/lib/*.so "${ARCH}-strip" "$STAGE_DIR"/{bin/*,sbin/*} fi