Fix CTF based builds to that if the debug build is being used we get

debug symbols.

Reviewed by:	jhb
This commit is contained in:
George V. Neville-Neil 2009-01-12 16:54:41 +00:00
parent 8ed1de23cb
commit a7e30aa841

View file

@ -25,6 +25,7 @@ COPTFLAGS?= -O
.else
. if defined(DEBUG)
_MINUS_O= -O
CTFFLAGS+= -g
. else
_MINUS_O= -O2
. endif