Pull via http to avoid certificate errors with https on certain platforms

(Illumos, SmartOS, Solaris... I'm looking at you.) Speed up builds by
running make in parallel (use all the cores!).
This commit is contained in:
Gregory Burd 2013-03-16 16:41:26 -04:00
parent fab5877ff5
commit ab45690a4b

View file

@ -21,13 +21,12 @@ case "$1" in
git fetch && \ git fetch && \
git merge origin/$WT_BRANCH) git merge origin/$WT_BRANCH)
else else
git clone https://github.com/wiredtiger/wiredtiger.git -b $WT_BRANCH && \ git clone http://github.com/wiredtiger/wiredtiger.git -b $WT_BRANCH && \
(cd wiredtiger && ./autogen.sh) (cd wiredtiger && ./autogen.sh)
fi fi
(cd wiredtiger/build_posix && \ (cd wiredtiger/build_posix && \
../configure --with-pic \ ../configure --with-pic \
--prefix=$BASEDIR/system && \ --prefix=$BASEDIR/system && \
make && make install) make -j 8 && make install)
;; ;;
esac esac