Date: Sat, 4 Feb 2017 02:15:50 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r313184 - head Message-ID: <201702040215.v142Fobx011870@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Sat Feb 4 02:15:49 2017 New Revision: 313184 URL: https://svnweb.freebsd.org/changeset/base/313184 Log: Remove LOCAL_LIB_DIRS warning added in r275839. The case for which this was added, r274807, causes this warning to always show. LOCAL_DIRS=foo LOCAL_LIB_DIRS=foo/lib. The only case in which r274807 is a problem is if foo/Makefile does not contain SUBDIR+=lib, which is a normal convention. LOCAL_LIB_DIRS is a special hack only to get a library into the _generic_libs list for the 'make libraries' bootstrapping phase. The old behavior changed in r274807 was only in head during the 10.0 cycle, so the warning was only ever needed until release anyhow. Reported by: ngie MFC after: 1 week Sponsored by: Dell EMC Isilon Modified: head/Makefile.inc1 Modified: head/Makefile.inc1 ============================================================================== --- head/Makefile.inc1 Sat Feb 4 01:24:21 2017 (r313183) +++ head/Makefile.inc1 Sat Feb 4 02:15:49 2017 (r313184) @@ -247,8 +247,6 @@ _REDUNDANT_LIB_DIRS+= ${LOCAL_LIB_DIR .for _DIR in ${LOCAL_LIB_DIRS} .if empty(_REDUNDANT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile) SUBDIR+= ${_DIR} -.else -.warning ${_DIR} not added to SUBDIR list. See UPDATING 20141121. .endif .endfor
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702040215.v142Fobx011870>