diff options
author | Andy Polyakov <appro@openssl.org> | 2005-12-18 19:00:54 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2005-12-18 19:00:54 +0000 |
commit | 7304956e39ae710d07e4691d3215c5c5db7181b5 (patch) | |
tree | b21ec9ac93d6eaeed948a40f894447579ec32870 /crypto | |
parent | c510eec0905095bdfd326f06fa3da69c686782b6 (diff) | |
download | openssl-new-7304956e39ae710d07e4691d3215c5c5db7181b5.tar.gz |
Missing CFLAG in couple of depend: targets.
PR: 1247
Submitted by: Doug Kaufman
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/ecdh/Makefile | 2 | ||||
-rw-r--r-- | crypto/ecdsa/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ecdh/Makefile b/crypto/ecdh/Makefile index 735e5d6c2f..95aa69fea5 100644 --- a/crypto/ecdh/Makefile +++ b/crypto/ecdh/Makefile @@ -64,7 +64,7 @@ lint: depend: @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... - $(MAKEDEPEND) -- $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) + $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) dclean: $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new diff --git a/crypto/ecdsa/Makefile b/crypto/ecdsa/Makefile index 1c2b8d4a55..16a93cd3ae 100644 --- a/crypto/ecdsa/Makefile +++ b/crypto/ecdsa/Makefile @@ -64,7 +64,7 @@ lint: depend: @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... - $(MAKEDEPEND) -- $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) + $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) dclean: $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |