diff options
author | William Hubbs <williamh@gentoo.org> | 2011-01-29 17:32:38 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2011-01-31 14:05:57 -0600 |
commit | cca7e9f7e1143f3405bc90ff8e2176d82ab491ef (patch) | |
tree | 63fee486bd9b9729b7defc66577daae1fddc1c1b /init.d/Makefile | |
parent | c2529c1ed61816799dd56bb46699b2b8cf5acb39 (diff) |
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
Diffstat (limited to 'init.d/Makefile')
-rw-r--r-- | init.d/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/Makefile b/init.d/Makefile index 6a0323ce..29ebe590 100644 --- a/init.d/Makefile +++ b/init.d/Makefile @@ -9,8 +9,8 @@ _OLDNET_SH= case "${MKOLDNET}" in \ [Yy][Ee][Ss]) echo "net.lo";; \ *) echo "";; \ esac -_OLDNET!= ${_OLDNET_SH} -_NET_LO= ${_OLDNET}$(shell ${_OLDNET_SH}) +_OLDNET:= $(shell ${_OLDNET_SH}) +_NET_LO= ${_OLDNET} INSTALLAFTER= _installafter_${_NET_LO} CLEANFILES+= ${_NET_LO} |