Fixed a little problem with = operator (it is not ==).

This commit is contained in:
David Capello 2009-08-05 01:59:56 +00:00
parent 67a830183b
commit e11796c83b

2
fix.sh
View File

@ -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