diff options
author | Ben Laurie <ben@links.org> | 2013-10-20 22:54:46 +0200 |
---|---|---|
committer | Ben Laurie <ben@links.org> | 2014-02-09 13:49:04 +0100 |
commit | 6311681236779c386137429b0e45ae7a7eb904f4 (patch) | |
tree | 73a6999ab2f15d044657fabde6e608f4cad8b227 /GitConfigure | |
parent | Return previous compression methods when setting them. (diff) | |
download | openssl-6311681236779c386137429b0e45ae7a7eb904f4.tar.xz openssl-6311681236779c386137429b0e45ae7a7eb904f4.zip |
Build on MacOS.
Diffstat (limited to 'GitConfigure')
-rwxr-xr-x | GitConfigure | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/GitConfigure b/GitConfigure index bbab33ebc5..0821031afa 100755 --- a/GitConfigure +++ b/GitConfigure @@ -5,4 +5,6 @@ BRANCH=`git rev-parse --abbrev-ref HEAD` ./Configure $@ no-symlinks make files util/mk1mf.pl OUT=out.$BRANCH TMP=tmp.$BRANCH INC=inc.$BRANCH copy > makefile.$BRANCH -make -f makefile.$BRANCH init +MAKE=make +which bsdmake > /dev/null && MAKE=bsdmake +$MAKE -f makefile.$BRANCH init |