Fixed wrong debug comparison

This commit is contained in:
llsth 2015-04-08 00:42:32 +02:00
parent e45fae685c
commit f445eef190
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"