diff options
author | obrien <obrien@FreeBSD.org> | 2010-10-13 18:23:43 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2010-10-13 18:23:43 +0000 |
commit | 58aac0183d96af58e4d598c20f9c028308e3ca11 (patch) | |
tree | c97b11b11cfab5cc1a15469b7fe87ffc0f35709d | |
parent | 2cbf038dc71689887efb1e732aae09e942689250 (diff) | |
download | FreeBSD-src-58aac0183d96af58e4d598c20f9c028308e3ca11.zip FreeBSD-src-58aac0183d96af58e4d598c20f9c028308e3ca11.tar.gz |
If one wishes to set breakpoints of static the functions here, they
cannot be inlined.
Submitted by: jhb
-rw-r--r-- | bin/sh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index 7be7b98..f679935 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -21,7 +21,7 @@ LDADD= -ll -ledit -ltermcap LFLAGS= -8 # 8-bit lex scanner for arithmetic CFLAGS+=-DSHELL -I. -I${.CURDIR} # for debug: -# DEBUG_FLAGS+= -g -DDEBUG=3 +# DEBUG_FLAGS+= -g -DDEBUG=3 -fno-inline WARNS?= 2 WFORMAT=0 |