From b942c3a91aba8b9ef56951d2692d28297fb4fcd2 Mon Sep 17 00:00:00 2001 From: yanmorin <yanmorin> Date: Wed, 2 Nov 2005 23:47:23 +0000 Subject: [PATCH] Minor correction to install --- tools/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/install.sh b/tools/install.sh index aedccf36fc..ea4b96807e 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -26,11 +26,11 @@ cmmi() { if [ $configok -eq 0 ]; then echo -en 'Do you want to make and make install the package? (y/n) ' read r - if [ "$r" != "y" ]; then + if [ "$r" = "y" ]; then configok=2 fi fi - if [ $configok -eq 0 ]; then + if [ $configok -eq 2 ]; then make || return echo "Enter you password to install the package as $USER (make install): " if [ "$SFL_INSTALL_USER" = "$USER" ]; then -- GitLab