aboutsummaryrefslogtreecommitdiff
path: root/apps/nc
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2017-01-09 02:22:26 -0600
committerBrent Cook <bcook@openbsd.org>2017-01-09 02:22:26 -0600
commitc691459502efc76b7fa4478b461ba7ab6c0d48cb (patch)
tree4bb07be318fb5f0bbc9240557d59f968c9db3c0a /apps/nc
parent45d35f0dfba2219539ab2b0e8f7c460bd79bfa29 (diff)
downloadportable-c691459502efc76b7fa4478b461ba7ab6c0d48cb.tar.gz
portable-c691459502efc76b7fa4478b461ba7ab6c0d48cb.tar.bz2
portable-c691459502efc76b7fa4478b461ba7ab6c0d48cb.zip
fix static mingw builds, platform LDADD needs to come at the end
Diffstat (limited to 'apps/nc')
-rw-r--r--apps/nc/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/nc/Makefile.am b/apps/nc/Makefile.am
index 2a24d87..791eade 100644
--- a/apps/nc/Makefile.am
+++ b/apps/nc/Makefile.am
@@ -11,10 +11,10 @@ endif
11EXTRA_DIST = nc.1 11EXTRA_DIST = nc.1
12EXTRA_DIST += CMakeLists.txt 12EXTRA_DIST += CMakeLists.txt
13 13
14nc_LDADD = $(PLATFORM_LDADD) $(PROG_LDADD) 14nc_LDADD = $(abs_top_builddir)/crypto/libcrypto.la
15nc_LDADD += $(abs_top_builddir)/crypto/libcrypto.la
16nc_LDADD += $(abs_top_builddir)/ssl/libssl.la 15nc_LDADD += $(abs_top_builddir)/ssl/libssl.la
17nc_LDADD += $(abs_top_builddir)/tls/libtls.la 16nc_LDADD += $(abs_top_builddir)/tls/libtls.la
17nc_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD)
18 18
19AM_CPPFLAGS += -I$(top_srcdir)/apps/nc/compat 19AM_CPPFLAGS += -I$(top_srcdir)/apps/nc/compat
20 20