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 --- mk/git.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mk/git.mk') diff --git a/mk/git.mk b/mk/git.mk index 54a98ef..62cae5a 100644 --- a/mk/git.mk +++ b/mk/git.mk @@ -4,5 +4,5 @@ _GITVER_SH= if git rev-parse --short HEAD >/dev/null 2>&1; then \ else \ echo ""; \ fi -_GITVER!= ${_GITVER_SH} -GITVER= ${_GITVER}$(shell ${_GITVER_SH}) +_GITVER:= $(shell ${_GITVER_SH}) +GITVER= ${_GITVER} -- cgit v1.2.3