aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Kwan <dougkwan@google.com>2011-03-18 15:14:24 -0700
committerDoug Kwan <dougkwan@google.com>2011-03-18 15:14:24 -0700
commit96c921062576e41760326d0b24753f9ba1c32278 (patch)
tree946d03b89ce156ca19667d07ac0c7ade16a20f51
parentf0b83e28a379308a3d803c77ec7ad7c10ae12932 (diff)
downloadbuild-96c921062576e41760326d0b24753f9ba1c32278.tar.gz
Fix Makefile.in, a previous check-in broke build using gmp/mpfr/mpc tarballs.
Change-Id: I0b16ee52add11b8394ede920d9a0af45fee0db8d
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 85114ad..0586e63 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -458,6 +458,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
@@ -483,6 +484,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
@@ -508,6 +510,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