aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Huang <jim.huang@linaro.org>2011-03-22 11:44:52 +0800
committerJim Huang <jim.huang@linaro.org>2011-03-22 11:44:52 +0800
commitb29a6738137114975cc17ca3ccc809f5e2b4d4fd (patch)
tree182c7fb80749b8655a670ecf88b3b8bfa33ae36e
parent0bba0076c795588773c2ec6e52cf3f97195579ef (diff)
parent96c921062576e41760326d0b24753f9ba1c32278 (diff)
Merge branch 'master' of git://android.git.kernel.org/toolchain/build
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 836872f..ec6997b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -459,6 +459,7 @@ build-host-gmp: stmp-build-host-gmp
# Need -j1 to avoid a race condition in building on OS X.
ifeq ($(HAVE_GMP),no)
stmp-install-host-gmp: stmp-build-host-gmp
+ $(MAKE) -C ${GMP_VERSION} install -j1 && $(STAMP) $@
else
stmp-install-host-gmp:
endif
@@ -484,6 +485,7 @@ stmp-build-host-mpfr: stmp-config-host-mpfr
build-host-mpfr: stmp-build-host-mpfr
ifeq ($(HAVE_MPFR),no)
stmp-install-host-mpfr: stmp-build-host-mpfr
+ $(MAKE) -C ${MPFR_VERSION} install && $(STAMP) $@
else
stmp-install-host-mpfr:
endif
@@ -509,6 +511,7 @@ stmp-build-host-mpc: stmp-config-host-mpc
build-host-mpc: stmp-build-host-mpc
ifeq ($(HAVE_MPC),no)
stmp-install-host-mpc: stmp-build-host-mpc
+ $(MAKE) -C ${MPC_VERSION} install && $(STAMP) $@
else
stmp-install-host-mpc:
endif