# HG changeset patch # User Paul Issott # Date 1237661114 0 # Node ID 8b1a253d2a0eaa5fc3308612b6a94f3d12b1a9ce # Parent 671a76927143301bf0b64fd7449f4f511eeb8484 bash: tiny fixes diff -r 671a76927143 -r 8b1a253d2a0e bash/receipt --- a/bash/receipt Thu Mar 19 13:17:19 2009 +0100 +++ b/bash/receipt Sat Mar 21 18:45:14 2009 +0000 @@ -21,7 +21,7 @@ ./configure --prefix=/usr --bindir=/bin \ --enable-history --enable-alias \ --disable-nls --without-bash-malloc \ - --disable-select --disable-help-builtin \ + --disable-help-builtin \ --infodir=/usr/share/info --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && @@ -55,7 +55,7 @@ echo -n "Do you want Bash for /bin/sh (yes/No) ? : "; read anser if [ "$anser" == "yes" ]; then echo "" - echo -n "Removin sh link to make a new one pointing on /bin/bash..." + echo -n "Removing sh link to make a new one pointing on /bin/bash..." rm $root/bin/sh && ln -s /bin/bash $root/bin/sh status else @@ -70,6 +70,7 @@ { sh=`readlink /bin/sh` if [ ! "$sh" = "busybox" ]; then + rm /bin/sh && ln -s /bin/busybox /bin/sh fi }