summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-06-27 16:39:25 +0000
committerRichard Levitte <levitte@openssl.org>2002-06-27 16:39:25 +0000
commit17085b022caf5975d3288cfdcd071826a7140735 (patch)
tree17ae6a0203600b100bb62d28dfa6989199613fff /Makefile.org
parent4367eb8706605b978d9d8b31ecba20c13f6e08e6 (diff)
Pass CFLAG to dependency makers, so non-standard system include paths are
handled properly. Part of PR 75
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org
index 2b7ed29809..716bfe0b22 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -600,7 +600,7 @@ depend:
do \
if [ -d "$$i" ]; then \
(cd $$i && echo "making dependencies $$i..." && \
- $(MAKE) SDIRS='${SDIRS}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \
+ $(MAKE) SDIRS='${SDIRS}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \
fi; \
done;