aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2023-05-11 23:55:34 +0000
committerWerner Koch <[email protected]>2023-06-16 08:09:31 +0000
commit32d9abf299ec5b217c5751d8dcf8cbb5989bdd9c (patch)
tree7b14695b93532488a0242a2b21507c8c9d6311f7
parentbuild: Update gpg-error.m4. (diff)
downloadlibassuan-32d9abf299ec5b217c5751d8dcf8cbb5989bdd9c.tar.gz
libassuan-32d9abf299ec5b217c5751d8dcf8cbb5989bdd9c.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 b547d37..552d744 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -43,7 +43,11 @@ TESTS += fdpassing
endif
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 = $(TESTS) $(w32cetools) $(testtools)