svn commit: r326592 - head/stand/userboot/test

Warner Losh imp at FreeBSD.org
Tue Dec 5 21:38:17 UTC 2017


Author: imp
Date: Tue Dec  5 21:38:14 2017
New Revision: 326592
URL: https://svnweb.freebsd.org/changeset/base/326592

Log:
  Don't inherit CFLAGS. This a specialized test program, and can be
  built with mostly default flags. Do so in anticipation of the rest of
  stand not building with system headers.
  
  Sponsored by: Netflix

Modified:
  head/stand/userboot/test/Makefile

Modified: head/stand/userboot/test/Makefile
==============================================================================
--- head/stand/userboot/test/Makefile	Tue Dec  5 21:38:10 2017	(r326591)
+++ head/stand/userboot/test/Makefile	Tue Dec  5 21:38:14 2017	(r326592)
@@ -9,6 +9,6 @@ MK_SSP=		no
 PROG=		test
 INTERNALPROG=
 
-CFLAGS+=	-I${BOOTSRC}/userboot -U_STANDALONE
+CFLAGS=	-I${BOOTSRC}/userboot
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list