From: Roy Marples Date: Fri, 29 Nov 2013 18:38:25 +0000 (+0000) Subject: -g is more portable than -ggdb X-Git-Tag: v6.2.0~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=855ad5e356ae48775ee5dffd43a8068c260467d7;p=thirdparty%2Fdhcpcd.git -g is more portable than -ggdb --- diff --git a/configure b/configure index 272d974c..cb484931 100755 --- a/configure +++ b/configure @@ -295,11 +295,11 @@ done if [ -n "$DEBUG" -a "$DEBUG" != no -a "$DEBUG" != false ]; then echo "Enabling memory debugging" echo "CPPFLAGS+= -DDEBUG_MEMORY" >>$CONFIG_MK - echo "CFLAGS+= -ggdb" >>$CONFIG_MK + echo "CFLAGS+= -g" >>$CONFIG_MK elif [ -z "$DEBUG" -a -d .git ]; then printf "Found git ... " DEBUG=yes - echo "CFLAGS+= -ggdb" >>$CONFIG_MK + echo "CFLAGS+= -g" >>$CONFIG_MK else DEBUG=no fi