From f445eef1901b68d335538d88537ead1e220ea2f4 Mon Sep 17 00:00:00 2001 From: llsth Date: Wed, 8 Apr 2015 00:42:32 +0200 Subject: [PATCH] Fixed wrong debug comparison --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 81c43403..d72d8fc0 100755 --- a/configure +++ b/configure @@ -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"