diff options
author | Rob Austein <sra@hactrn.net> | 2012-03-12 21:24:02 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-03-12 21:24:02 +0000 |
commit | 624fb058cbd0b8ccf8a3b539d8bae66962d93938 (patch) | |
tree | 15a1e219db3537cf2c3784e1e8ade731b4f95607 /openssl | |
parent | d51bedcff66259a57ffa82961c6930ee83f60585 (diff) |
"make depend" is currently (OpenSSL 1.0.0h) broken on Mac OS X,
because it goes looking for a non-existent "makedepend" program. As
far as I can tell, everything works fine if we just ignore the failure
and press on with the OpenSSL build, so we now do that. Sigh.
svn path=/trunk/; revision=4396
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/Makefile.in b/openssl/Makefile.in index 3dd8cfe5..6498ed30 100644 --- a/openssl/Makefile.in +++ b/openssl/Makefile.in @@ -56,7 +56,7 @@ distclean: clean openssl-${VERSION}/Makefile: openssl-${VERSION}/config cd openssl-${VERSION}; ${OPENSSL_CONFIG_COMMAND} ${OPTIONS} - cd openssl-${VERSION}; ${MAKE} depend + -cd openssl-${VERSION}; ${MAKE} depend openssl-${VERSION}/config: openssl-${VERSION}.tar.gz gzip -c -d openssl-${VERSION}.tar.gz | tar -xf - |