1
0
mirror of https://gitlab.com/rnger/amath synced 2025-10-05 18:39:41 +00:00

Fixed wrong debug comparison

This commit is contained in:
llsth
2015-04-08 00:42:32 +02:00
parent e45fae685c
commit f445eef190

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"