svn commit: r292153 - head/lib/libc/regex/grot

Garrett Cooper ngie at FreeBSD.org
Sun Dec 13 06:33:53 UTC 2015


Author: ngie
Date: Sun Dec 13 06:33:52 2015
New Revision: 292153
URL: https://svnweb.freebsd.org/changeset/base/292153

Log:
  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

Modified:
  head/lib/libc/regex/grot/Makefile

Modified: head/lib/libc/regex/grot/Makefile
==============================================================================
--- head/lib/libc/regex/grot/Makefile	Sun Dec 13 04:29:09 2015	(r292152)
+++ head/lib/libc/regex/grot/Makefile	Sun Dec 13 06:33:52 2015	(r292153)
@@ -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


More information about the svn-src-head mailing list