From owner-svn-src-all@freebsd.org Fri Feb 26 22:14:26 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFFEFAB6DAB; Fri, 26 Feb 2016 22:14:25 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8BB0E13D1; Fri, 26 Feb 2016 22:14:25 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1QMEOeV033740; Fri, 26 Feb 2016 22:14:24 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1QMENuK033732; Fri, 26 Feb 2016 22:14:23 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201602262214.u1QMENuK033732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 26 Feb 2016 22:14:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r296129 - in head/lib: libdpv libfigpar libgpio libnv libpjdlog libproc libproc/tests X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Feb 2016 22:14:26 -0000 Author: bdrewery Date: Fri Feb 26 22:14:23 2016 New Revision: 296129 URL: https://svnweb.freebsd.org/changeset/base/296129 Log: Remove WARNS inherited fine by ../Makefile.inc. Sponsored by: EMC / Isilon Storage Division Added: head/lib/libproc/Makefile.inc (contents, props changed) Modified: head/lib/libdpv/Makefile head/lib/libfigpar/Makefile head/lib/libgpio/Makefile head/lib/libnv/Makefile head/lib/libpjdlog/Makefile head/lib/libproc/tests/Makefile Modified: head/lib/libdpv/Makefile ============================================================================== --- head/lib/libdpv/Makefile Fri Feb 26 22:14:19 2016 (r296128) +++ head/lib/libdpv/Makefile Fri Feb 26 22:14:23 2016 (r296129) @@ -12,6 +12,4 @@ SRCS= dialog_util.c dialogrc.c dprompt. CFLAGS+= -I${.CURDIR} -WARNS?= 6 - .include Modified: head/lib/libfigpar/Makefile ============================================================================== --- head/lib/libfigpar/Makefile Fri Feb 26 22:14:19 2016 (r296128) +++ head/lib/libfigpar/Makefile Fri Feb 26 22:14:23 2016 (r296129) @@ -16,6 +16,4 @@ CFLAGS+= -I${.CURDIR} SRCS= figpar.c string_m.c -WARNS?= 6 - .include Modified: head/lib/libgpio/Makefile ============================================================================== --- head/lib/libgpio/Makefile Fri Feb 26 22:14:19 2016 (r296128) +++ head/lib/libgpio/Makefile Fri Feb 26 22:14:23 2016 (r296129) @@ -31,6 +31,4 @@ MLINKS= gpio.3 gpio_open.3 \ gpio.3 gpio_pin_invout.3 \ gpio.3 gpio_pin_pulsate.3 -WARNS?= 6 - .include Modified: head/lib/libnv/Makefile ============================================================================== --- head/lib/libnv/Makefile Fri Feb 26 22:14:19 2016 (r296128) +++ head/lib/libnv/Makefile Fri Feb 26 22:14:23 2016 (r296129) @@ -15,8 +15,6 @@ SRCS+= msgio.c SRCS+= nvlist.c SRCS+= nvpair.c -WARNS?= 6 - .if ${MK_TESTS} != "no" SUBDIR+= tests .endif Modified: head/lib/libpjdlog/Makefile ============================================================================== --- head/lib/libpjdlog/Makefile Fri Feb 26 22:14:19 2016 (r296128) +++ head/lib/libpjdlog/Makefile Fri Feb 26 22:14:23 2016 (r296129) @@ -15,6 +15,4 @@ CFLAGS+=-I${.CURDIR} LIBADD= util -WARNS?= 6 - .include Added: head/lib/libproc/Makefile.inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lib/libproc/Makefile.inc Fri Feb 26 22:14:23 2016 (r296129) @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" Modified: head/lib/libproc/tests/Makefile ============================================================================== --- head/lib/libproc/tests/Makefile Fri Feb 26 22:14:19 2016 (r296128) +++ head/lib/libproc/tests/Makefile Fri Feb 26 22:14:23 2016 (r296129) @@ -12,6 +12,4 @@ LIBADD= elf proc rtld_db util # for testing symbol lookup. STRIP= -WARNS?= 6 - .include