Date: Sun, 14 Jun 2015 03:34:10 +0000 (UTC) From: "Simon J. Gerraty" <sjg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284374 - in head/usr.bin: mkcsmapper_static mkesdb_static Message-ID: <201506140334.t5E3YAiJ099698@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506140334.t5E3YAiJ099698>