Skip to content

Commit

Permalink
Fix typos regarding CPPFLAGS.
Browse files Browse the repository at this point in the history
CPPFLAGS from the environment were overwritten in some cases.
  • Loading branch information
debfx committed Jun 13, 2015
1 parent c868a14 commit 2993fbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoconf/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ if test "x$support_crypto" != "xno" -o "x$support_tls" != "xno"; then

saved_LIBS="${LIBS}"
saved_CFLAGS="${CFLAGS}"
saved_CPPFLAGS="${CFLAGS}"
saved_CPPFLAGS="${CPPFLAGS}"
LIBS="${saved_LIBS} ${OPENSSL_LIBS}"
CFLAGS="${saved_CFLAGS} ${OPENSSL_INC}"
CPPFLAGS="${saved_CPPFLAGS} ${OPENSSL_INC}"
Expand Down Expand Up @@ -1291,7 +1291,7 @@ if test "x$support_crypto" != "xno" -o "x$support_tls" != "xno"; then

saved_LIBS="${LIBS}"
saved_CFLAGS="${CFLAGS}"
saved_CPPFLAGS="${CFLAGS}"
saved_CPPFLAGS="${CPPFLAGS}"
LIBS="${saved_LIBS} ${GNUTLS_LIBS}"
CFLAGS="${saved_CFLAGS} ${GNUTLS_INC}"
CPPFLAGS="${saved_CPPFLAGS} ${GNUTLS_INC}"
Expand Down

0 comments on commit 2993fbd

Please sign in to comment.