Fixed wrong debug comparison

This commit is contained in:
llsth
2015-04-08 00:42:32 +02:00
parent ca61aa757b
commit 112326fa58
Vendored
+1 -1
View File
@@ -221,7 +221,7 @@ if $VALID ; then
if [ -n "$DEBUG" ];
then
if [ "$DEBUG" = "y" || "$DEBUG" = "Y" ];
if [ "$DEBUG" = "y" ] || [ "$DEBUG" = "Y" ];
then
appop="-O0 -g"
libop="-O0 -g"