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

Reply via email to