Fixed wrong debug comparison

This commit is contained in:
llsth 2015-04-08 00:42:32 +02:00
parent ca61aa757b
commit 112326fa58
1 changed files with 1 additions and 1 deletions

2
configure vendored
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"