wok diff nvidia-173xx/receipt @ rev 22365
kdelibs: fix kdeui/CMakeLists.txt
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 22 10:49:44 2019 +0100 (2019-11-22) |
parents | 45359819b214 |
children | d7522d21c4d3 |
line diff
1.1 --- a/nvidia-173xx/receipt Mon Jun 25 16:12:29 2018 +0200 1.2 +++ b/nvidia-173xx/receipt Fri Nov 22 10:49:44 2019 +0100 1.3 @@ -105,13 +105,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 "$1/usr/share/licenses/$PACKAGE/LICENSE" 1.10 newline 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