svn commit: r296406 - head/lib
Bryan Drewery
bdrewery at FreeBSD.org
Sat Mar 5 05:40:01 UTC 2016
Author: bdrewery
Date: Sat Mar 5 05:39:59 2016
New Revision: 296406
URL: https://svnweb.freebsd.org/changeset/base/296406
Log:
Revert r296395.
This mistakenly removed the SUBDIR_PARALLEL but even worse is that the install
(and build) order is not correct due to the lack of SUBDIR_DEPEND on the
most critical libraries. The only reason they build correctly now is because
buildworld's 'make libraries' orders them properly.
Pointyhat to: bdrewery
Sponsored by: EMC / Isilon Storage Division
Modified:
head/lib/Makefile
Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile Sat Mar 5 05:08:57 2016 (r296405)
+++ head/lib/Makefile Sat Mar 5 05:39:59 2016 (r296406)
@@ -308,4 +308,8 @@ _libusbhid= libusbhid
_libusb= libusb
.endif
+.if !make(install)
+SUBDIR_PARALLEL=
+.endif
+
.include <bsd.subdir.mk>
More information about the svn-src-all
mailing list