From: Sven Hoexter Date: Tue, 25 Dec 2007 20:56:08 +0000 (+0000) Subject: Correct optimization/noopt check X-Git-Tag: debian/7.17.1-1~8 X-Git-Url: http://git.sven.stormbind.net/?p=sven%2Ftclcurl.git;a=commitdiff_plain;h=eefeec2c754fafab48b2f14a957969eccfc38889 Correct optimization/noopt check --- diff --git a/debian/rules b/debian/rules index 92d16e6..82b2120 100755 --- a/debian/rules +++ b/debian/rules @@ -26,9 +26,9 @@ LDFLAGS += -Wl,-z,defs -Wl,--as-needed CFLAGS += -Wall -g ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O2 -else CFLAGS += -O0 +else + CFLAGS += -O2 endif