diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-13 06:33:52 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-13 06:33:52 +0000 |
commit | d5e50bf50f68836c9aab5f197ee9eacfec020d8c (patch) | |
tree | 975707452d82def6ef723fdd1e3b4b1ee97eba33 /lib/libc/regex | |
parent | d4d206c8d5f20d4323b2a50bb193c2d5b2b0d568 (diff) | |
download | FreeBSD-src-d5e50bf50f68836c9aab5f197ee9eacfec020d8c.zip FreeBSD-src-d5e50bf50f68836c9aab5f197ee9eacfec020d8c.tar.gz |
Add -static to CFLAGS to unbreak the tests by using a libc.a with
the xlocale private symbols exposed which aren't exposed publicly
via the DSO
PR: 191354
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'lib/libc/regex')
-rw-r--r-- | lib/libc/regex/grot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/regex/grot/Makefile b/lib/libc/regex/grot/Makefile index e715dd8..056b55e 100644 --- a/lib/libc/regex/grot/Makefile +++ b/lib/libc/regex/grot/Makefile @@ -8,7 +8,7 @@ PATHS= ${.CURDIR}/.. ${.CURDIR}/../../locale ${.CURDIR}/../../../../include .PATH: ${PATHS} -CFLAGS+= -DPOSIX_MISTAKE -DREDEBUG $(REGCFLAGS) +CFLAGS+= -static -DPOSIX_MISTAKE -DREDEBUG $(REGCFLAGS) .for incpath in ${PATHS} CFLAGS+= -I${incpath} .endfor |