From cca7e9f7e1143f3405bc90ff8e2176d82ab491ef Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sat, 29 Jan 2011 17:32:38 -0600 Subject: use immediate evaluation for shell calls This reworks the shell calls in the makefiles to use immediate evaluation and should improve parallel building. X-Gentoo-Bug: 289264 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=289264 --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 18a8ddfa..d2e1593e 100644 --- a/Makefile +++ b/Makefile @@ -11,16 +11,16 @@ _OLDNET_SH= case "${MKOLDNET}" in \ [Yy][Ee][Ss]) echo "net doc";; \ *) echo "";; \ esac -_OLDNET!= ${_OLDNET_SH} -SUBDIR+= ${_OLDNET}$(shell ${_OLDNET_SH}) +_OLDNET:= $(shell ${_OLDNET_SH}) +SUBDIR+= ${_OLDNET} # Build pkgconfig or not _PKGCONFIG_SH= case "${MKPKGCONFIG}" in \ [Yy][Ee][Ss]|"") echo "pkgconfig";; \ *) echo "";; \ esac -_PKGCONFIG!= ${_PKGCONFIG_SH} -SUBDIR+= ${_PKGCONFIG}$(shell ${_PKGCONFIG_SH}) +_PKGCONFIG:= $(shell ${_PKGCONFIG_SH}) +SUBDIR+= ${_PKGCONFIG} # We need to ensure that runlevels is done last SUBDIR+= runlevels -- cgit v1.2.3