diff options
| author | Brent Cook <bcook@openbsd.org> | 2017-01-09 02:22:26 -0600 |
|---|---|---|
| committer | Brent Cook <bcook@openbsd.org> | 2017-01-09 02:22:26 -0600 |
| commit | c691459502efc76b7fa4478b461ba7ab6c0d48cb (patch) | |
| tree | 4bb07be318fb5f0bbc9240557d59f968c9db3c0a /apps/openssl | |
| parent | 45d35f0dfba2219539ab2b0e8f7c460bd79bfa29 (diff) | |
| download | portable-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/openssl')
| -rw-r--r-- | apps/openssl/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/openssl/Makefile.am b/apps/openssl/Makefile.am index 90881d0..9b9eb10 100644 --- a/apps/openssl/Makefile.am +++ b/apps/openssl/Makefile.am | |||
| @@ -4,9 +4,9 @@ bin_PROGRAMS = openssl | |||
| 4 | 4 | ||
| 5 | dist_man_MANS = openssl.1 | 5 | dist_man_MANS = openssl.1 |
| 6 | 6 | ||
| 7 | openssl_LDADD = $(PLATFORM_LDADD) $(PROG_LDADD) | 7 | openssl_LDADD = $(abs_top_builddir)/ssl/libssl.la |
| 8 | openssl_LDADD += $(abs_top_builddir)/ssl/libssl.la | ||
| 9 | openssl_LDADD += $(abs_top_builddir)/crypto/libcrypto.la | 8 | openssl_LDADD += $(abs_top_builddir)/crypto/libcrypto.la |
| 9 | openssl_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD) | ||
| 10 | 10 | ||
| 11 | openssl_SOURCES = apps.c | 11 | openssl_SOURCES = apps.c |
| 12 | openssl_SOURCES += asn1pars.c | 12 | openssl_SOURCES += asn1pars.c |
