diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2016-03-05 05:39:59 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2016-03-05 05:39:59 +0000 |
commit | 3c3decdda845c6a66420dee1b1348362d88e245e (patch) | |
tree | d0cb4a396af904d80d4e6997840baab08d917cb4 /lib/Makefile | |
parent | 6dfa0a3f290902ee4bdd5ff71bceb1fc34acecaf (diff) | |
download | FreeBSD-src-3c3decdda845c6a66420dee1b1348362d88e245e.zip FreeBSD-src-3c3decdda845c6a66420dee1b1348362d88e245e.tar.gz |
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
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index c9ef13f..cfa0ea9 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -308,4 +308,8 @@ _libusbhid= libusbhid _libusb= libusb .endif +.if !make(install) +SUBDIR_PARALLEL= +.endif + .include <bsd.subdir.mk> |