From e11796c83b10e4e946dba11c96e334a330d6cd51 Mon Sep 17 00:00:00 2001 From: David Capello Date: Wed, 5 Aug 2009 01:59:56 +0000 Subject: [PATCH] Fixed a little problem with = operator (it is not ==). --- fix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fix.sh b/fix.sh index 5dd91a9f0..21314f841 100644 --- a/fix.sh +++ b/fix.sh @@ -102,7 +102,7 @@ gen_makefile() echo "" >> $makefile fi - if [ X"$debug" == X"y" ] ; then echo -n "#" >> $makefile ; fi + if [ X"$debug" = X"y" ] ; then echo -n "#" >> $makefile ; fi echo "RELEASE = 1" >> $makefile if [ X"$debug" != X"y" ] ; then echo -n "#" >> $makefile ; fi