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 _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"