diff options
author | Phil Pennock <pdp@exim.org> | 2018-09-14 20:55:33 -0400 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2018-09-14 20:55:33 -0400 |
commit | be4bdb96db7556f34c5f298f1c473d53f3700bd9 (patch) | |
tree | b361d867d2a0906267d5b5b5bc9d10500e926c93 /test/Makefile.in | |
parent | a3d83c9e8d57ba51cd246435b14604f995551802 (diff) |
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.in | 2 |
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@ |