From c4499f273d73fed964a9fe357355104f85fd10fa Mon Sep 17 00:00:00 2001 From: Paul Tarjan Date: Tue, 28 Jan 2014 19:50:23 -0800 Subject: [PATCH] parallel makes --- configure_ubuntu_12.04.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure_ubuntu_12.04.sh b/configure_ubuntu_12.04.sh index 21fa1243d..e11444e55 100755 --- a/configure_ubuntu_12.04.sh +++ b/configure_ubuntu_12.04.sh @@ -88,7 +88,7 @@ git checkout release-1.4.14b-stable cat ../hphp/third_party/libevent-1.4.14.fb-changes.diff | patch -p1 ./autogen.sh ./configure --prefix=$CMAKE_PREFIX_PATH -make +make -j $CPUS make install cd .. @@ -96,14 +96,14 @@ cd .. cd curl ./buildconf ./configure --prefix=$CMAKE_PREFIX_PATH -make +make -j $CPUS make install cd .. # glog cd google-glog ./configure --prefix=$CMAKE_PREFIX_PATH -make +make -j $CPUS make install cd .. @@ -111,7 +111,7 @@ cd .. tar xjvf jemalloc-3.0.0.tar.bz2 cd jemalloc-3.0.0 ./configure --prefix=$CMAKE_PREFIX_PATH -make +make -j $CPUS make install cd ..