svn commit: r311190 - stable/11/share/mk
Bryan Drewery
bdrewery at FreeBSD.org
Tue Jan 3 23:02:10 UTC 2017
Author: bdrewery
Date: Tue Jan 3 23:02:08 2017
New Revision: 311190
URL: https://svnweb.freebsd.org/changeset/base/311190
Log:
MFC r308597:
Always set CLEANFILES, even if not building.
Modified:
stable/11/share/mk/bsd.lib.mk
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/share/mk/bsd.lib.mk
==============================================================================
--- stable/11/share/mk/bsd.lib.mk Tue Jan 3 23:01:11 2017 (r311189)
+++ stable/11/share/mk/bsd.lib.mk Tue Jan 3 23:02:08 2017 (r311190)
@@ -297,7 +297,6 @@ all:
.else
.if defined(_LIBS) && !empty(_LIBS)
all: ${_LIBS}
-CLEANFILES+= ${_LIBS}
.endif
.if ${MK_MAN} != "no" && !defined(LIBRARIES_ONLY)
@@ -305,6 +304,8 @@ all: all-man
.endif
.endif
+CLEANFILES+= ${_LIBS}
+
_EXTRADEPEND:
.if !defined(NO_EXTRADEPEND) && defined(SHLIB_NAME)
.if defined(DPADD) && !empty(DPADD)
More information about the svn-src-stable
mailing list