wok diff nvidia-96xx/receipt @ rev 23797

linld: fix argstr
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 23 18:02:24 2020 +0000 (2020-05-23)
parents 0c85739e5ac3
children a3c45ab9082e
line diff
     1.1 --- a/nvidia-96xx/receipt	Mon Jan 25 12:18:01 2016 +0100
     1.2 +++ b/nvidia-96xx/receipt	Sat May 23 18:02:24 2020 +0000
     1.3 @@ -89,13 +89,13 @@
     1.4  	echo "For installing this package, you have to accept the $PACKAGE license."
     1.5  	echo "The license is stored in /usr/share/licenses/$PACKAGE "
     1.6  	echo -n "Would you like to read the license (y/N) : "; read anser
     1.7 -	if [ "$anser" == 'y' ]; then
     1.8 +	if [ "$anser" = 'y' ]; then
     1.9  		more /usr/share/licenses/"$PACKAGE"/LICENSE
    1.10  		echo
    1.11  	fi
    1.12  	separator
    1.13  	echo -n "Do you accept the license (y/N) : "; read anser
    1.14 -	if [ "$anser" == 'N' ]; then
    1.15 +	if [ "$anser" = 'N' ]; then
    1.16  		echo "You did not accept the license, Removing the pkg."
    1.17  		tazpkg remove "$PACKAGE"
    1.18  	fi