summaryrefslogtreecommitdiff
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorPhil Pennock <pdp@exim.org>2018-09-14 20:55:33 -0400
committerPhil Pennock <pdp@exim.org>2018-09-14 20:55:33 -0400
commitbe4bdb96db7556f34c5f298f1c473d53f3700bd9 (patch)
treeb361d867d2a0906267d5b5b5bc9d10500e926c93 /test/Makefile.in
parenta3d83c9e8d57ba51cd246435b14604f995551802 (diff)
downloadexim4-be4bdb96db7556f34c5f298f1c473d53f3700bd9.tar.gz
tests: propagate CPPFLAGS into build invocations
With openssl installed by brew on macOS, OpenSSL headers are not in a normal place. I can fiddle with LDFLAGS/CPPFLAGS to get them available, but then the `./configure` step succeeds and build fails. Propagating the CPPFLAGS into the generated Makefile lets the build succeed and we get a `client-ssl` binary output.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index edcc4ab78..6d3bc5550 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -4,7 +4,7 @@
# These variables are set by the configure script.
CC=@CC@
-CFLAGS=@CFLAGS@ @BIND_8_COMPAT@ @DEFS@
+CFLAGS=@CFLAGS@ @CPPFLAGS@ @BIND_8_COMPAT@ @DEFS@
LDFLAGS=@LDFLAGS@
CLIENT_SSL=@CLIENT_SSL@
CLIENT_GNUTLS=@CLIENT_GNUTLS@