aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2016-04-21 14:49:39 +0900
committerBrent Cook <bcook@openbsd.org>2016-05-02 22:12:53 -0500
commitad914139c4c6dde31d8a17116e95f1de32d96386 (patch)
tree0d14475464dbb6e69aeeb54ec0f46fc32ef89ac2 /tests
parent6a136f72ffd4f972790961e3ed36f551479e44fb (diff)
downloadportable-ad914139c4c6dde31d8a17116e95f1de32d96386.tar.gz
portable-ad914139c4c6dde31d8a17116e95f1de32d96386.tar.bz2
portable-ad914139c4c6dde31d8a17116e95f1de32d96386.zip
fix ld warning "attempted multiple inclusion of file" on Solaris
- To avoid ld warning on Solaris, use abs_top_builddir in Makefile.am
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 17293b9..3a6edfe 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -7,9 +7,9 @@ AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl
7AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat 7AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat
8 8
9LDADD = $(PLATFORM_LDADD) $(PROG_LDADD) 9LDADD = $(PLATFORM_LDADD) $(PROG_LDADD)
10LDADD += $(top_builddir)/ssl/libssl.la 10LDADD += $(abs_top_builddir)/ssl/libssl.la
11LDADD += $(top_builddir)/crypto/libcrypto.la 11LDADD += $(abs_top_builddir)/crypto/libcrypto.la
12LDADD += $(top_builddir)/tls/libtls.la 12LDADD += $(abs_top_builddir)/tls/libtls.la
13 13
14TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh 14TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh
15 15