svn commit: r284374 - in head/usr.bin: mkcsmapper_static mkesdb_static

Simon J. Gerraty sjg at FreeBSD.org
Sun Jun 14 03:34:10 UTC 2015


Author: sjg
Date: Sun Jun 14 03:34:09 2015
New Revision: 284374
URL: https://svnweb.freebsd.org/changeset/base/284374

Log:
  NO_WARNS when building for host

Modified:
  head/usr.bin/mkcsmapper_static/Makefile
  head/usr.bin/mkesdb_static/Makefile

Modified: head/usr.bin/mkcsmapper_static/Makefile
==============================================================================
--- head/usr.bin/mkcsmapper_static/Makefile	Sun Jun 14 03:33:27 2015	(r284373)
+++ head/usr.bin/mkcsmapper_static/Makefile	Sun Jun 14 03:34:09 2015	(r284374)
@@ -7,6 +7,9 @@ SRCS=	citrus_bcs.c citrus_db_factory.c c
 	citrus_lookup_factory.c citrus_pivot_factory.c
 MAN=
 NO_SHARED= yes
+.if ${MACHINE} == "host"
+NO_WARNS= yes
+.endif
 
 build-tools: mkcsmapper_static
 

Modified: head/usr.bin/mkesdb_static/Makefile
==============================================================================
--- head/usr.bin/mkesdb_static/Makefile	Sun Jun 14 03:33:27 2015	(r284373)
+++ head/usr.bin/mkesdb_static/Makefile	Sun Jun 14 03:34:09 2015	(r284374)
@@ -7,6 +7,9 @@ SRCS=	citrus_bcs.c citrus_db_factory.c c
 	citrus_lookup_factory.c
 MAN=
 NO_SHARED= yes
+.if ${MACHINE} == "host"
+NO_WARNS= yes
+.endif
 
 build-tools: mkesdb_static
 


More information about the svn-src-head mailing list