summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-06-27 16:44:52 +0000
committerRichard Levitte <levitte@openssl.org>2002-06-27 16:44:52 +0000
commitca55c617e50706e56868c81f6e894bda4cc39763 (patch)
tree0cf71c72ece40329e19389b524e41640c1a0bb79 /Makefile.org
parent9063e375e8429bc5958e8e344da9be5b3de17976 (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 73c00276d3..28619d3310 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;