cca7e9f7e1
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
9 lines
197 B
Makefile
9 lines
197 B
Makefile
_GITVER_SH= if git rev-parse --short HEAD >/dev/null 2>&1; then \
|
|
printf "."; \
|
|
git rev-parse --short HEAD; \
|
|
else \
|
|
echo ""; \
|
|
fi
|
|
_GITVER:= $(shell ${_GITVER_SH})
|
|
GITVER= ${_GITVER}
|