aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2023-05-11 23:55:34 +0000
committerNIIBE Yutaka <[email protected]>2023-05-11 23:55:34 +0000
commit69578137570956a31eaa5a9559dbcfbe6d9d9f23 (patch)
treecc557852ae4f216f8767ba0acd2cf03168e2c9ba
parentDeprecate ASSUAN_SYSTEM_NPTH. (diff)
downloadlibassuan-69578137570956a31eaa5a9559dbcfbe6d9d9f23.tar.gz
libassuan-69578137570956a31eaa5a9559dbcfbe6d9d9f23.zip
tests: Use -no-fast-install LDFLAGS for Windows.
* tests/Makefile.am [HAVE_W32_SYSTEM] (AM_LDFLAGS): Conditionalize. -- Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r--tests/Makefile.am4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 1f93e99..8f38c16 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -44,7 +44,11 @@ endif
TESTS = $(test_programs) $(check_SCRIPTS)
AM_CFLAGS = $(GPG_ERROR_CFLAGS)
+if HAVE_W32_SYSTEM
+AM_LDFLAGS = -no-fast-install
+else
AM_LDFLAGS = -no-install
+endif
noinst_HEADERS = common.h
noinst_PROGRAMS = $(test_programs) $(w32cetools) $(testtools)