diff options
author | Jeremy Huddleston Sequoia <jeremyhu@apple.com> | 2015-10-11 16:45:25 -0700 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-10-14 16:33:25 -0500 |
commit | 9afc452761c630816e443b9e945f3db2259afbb9 (patch) | |
tree | 1eda803a3138a7c0978924275416750527c02565 /apps | |
parent | 9dd9d1757eeb6ba0aec10e29f6350ad810de8d6d (diff) | |
download | portable-9afc452761c630816e443b9e945f3db2259afbb9.tar.gz portable-9afc452761c630816e443b9e945f3db2259afbb9.tar.bz2 portable-9afc452761c630816e443b9e945f3db2259afbb9.zip |
nc: Use AM_CPPFLAGS, not CPPFLAGS in Makefile.am
CPPFLAGS should just be set by the user at configure time
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/nc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/nc/Makefile.am b/apps/nc/Makefile.am index 4e6f41d..cfcdab1 100644 --- a/apps/nc/Makefile.am +++ b/apps/nc/Makefile.am | |||
@@ -11,7 +11,7 @@ nc_LDADD += $(top_builddir)/crypto/libcrypto.la | |||
11 | nc_LDADD += $(top_builddir)/ssl/libssl.la | 11 | nc_LDADD += $(top_builddir)/ssl/libssl.la |
12 | nc_LDADD += $(top_builddir)/tls/libtls.la | 12 | nc_LDADD += $(top_builddir)/tls/libtls.la |
13 | 13 | ||
14 | CPPFLAGS += -I$(top_srcdir)/apps/nc/compat | 14 | AM_CPPFLAGS += -I$(top_srcdir)/apps/nc/compat |
15 | 15 | ||
16 | nc_SOURCES = atomicio.c | 16 | nc_SOURCES = atomicio.c |
17 | nc_SOURCES += netcat.c | 17 | nc_SOURCES += netcat.c |