wok rev 2534

bash: tiny fixes
author Paul Issott <paul@slitaz.org>
date Sat Mar 21 18:45:14 2009 +0000 (2009-03-21)
parents 671a76927143
children 680f78803431
files bash/receipt
line diff
     1.1 --- a/bash/receipt	Thu Mar 19 13:17:19 2009 +0100
     1.2 +++ b/bash/receipt	Sat Mar 21 18:45:14 2009 +0000
     1.3 @@ -21,7 +21,7 @@
     1.4  	./configure --prefix=/usr --bindir=/bin \
     1.5  	--enable-history --enable-alias  \
     1.6  	--disable-nls --without-bash-malloc \
     1.7 -	--disable-select --disable-help-builtin \
     1.8 +	--disable-help-builtin \
     1.9  	--infodir=/usr/share/info --mandir=/usr/share/man \
    1.10  	$CONFIGURE_ARGS &&
    1.11  	make &&
    1.12 @@ -55,7 +55,7 @@
    1.13  		echo -n "Do you want Bash for /bin/sh (yes/No) ? : "; read anser
    1.14  		if [ "$anser" == "yes" ]; then
    1.15  			echo ""
    1.16 -			echo -n "Removin sh link to make a new one pointing on /bin/bash..."
    1.17 +			echo -n "Removing sh link to make a new one pointing on /bin/bash..."
    1.18  			rm $root/bin/sh && ln -s /bin/bash $root/bin/sh
    1.19  			status
    1.20  		else
    1.21 @@ -70,6 +70,7 @@
    1.22  {
    1.23  	sh=`readlink /bin/sh`
    1.24  	if [ ! "$sh" = "busybox" ]; then
    1.25 +		rm /bin/sh &&
    1.26  		ln -s /bin/busybox /bin/sh
    1.27  	fi
    1.28  }