diff options
author | Marcus Brinkmann <mb@g10code.com> | 2005-10-07 15:09:20 +0200 |
---|---|---|
committer | Marcus Brinkmann <mb@g10code.com> | 2005-10-07 15:09:20 +0200 |
commit | d7a1e30b30ea3fe1db4eaa06e1ac05b6892b2fb6 (patch) | |
tree | 15d76ce5ed33762a6baae8d18651dfeb3f30e7bc /tests | |
parent | 2005-09-28 Marcus Brinkmann <marcus@g10code.de> (diff) | |
download | gnupg2-d7a1e30b30ea3fe1db4eaa06e1ac05b6892b2fb6.tar.xz gnupg2-d7a1e30b30ea3fe1db4eaa06e1ac05b6892b2fb6.zip |
2005-10-07 Marcus Brinkmann <marcus@g10code.de>
* Makefile.am (TESTS_ENVIRONMENT): Remove LD_LIBRARY_PATH hack.
It's the responsibility of the person building the software to set
it properly.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 6 | ||||
-rw-r--r-- | tests/Makefile.am | 21 |
2 files changed, 7 insertions, 20 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 749220d9a..f75387757 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,9 @@ +2005-10-07 Marcus Brinkmann <marcus@g10code.de> + + * Makefile.am (TESTS_ENVIRONMENT): Remove LD_LIBRARY_PATH hack. + It's the responsibility of the person building the software to set + it properly. + 2004-09-30 Werner Koch <wk@g10code.com> * Makefile.am (SUBDIRS): Remove pkits until the copyright issues diff --git a/tests/Makefile.am b/tests/Makefile.am index bc2e50e10..5264b8859 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -33,26 +33,7 @@ GPGSM = ../sm/gpgsm TESTS_ENVIRONMENT = GNUPGHOME=`pwd` GPG_AGENT_INFO= LC_ALL=C GPGSM=$(GPGSM) \ - LD_LIBRARY_PATH=$$(seen=0; \ - for i in $(LDFLAGS) $(LIBGCRYPT_LIBS) $(PTH_LIBS); \ - do \ - if echo "$$i" | egrep '^-L' >/dev/null 2>&1; \ - then \ - if test $$seen = 0; \ - then \ - seen=1; \ - else \ - printf ":"; \ - fi; \ - printf "%s" "$${i}" | sed 's/^-L//'; \ - fi; \ - done; \ - if test $$seen != 0 \ - && test x$${LD_LIBRARY_PATH} != x; \ - then \ - printf ":"; \ - fi; \ - printf "%s" "$${LD_LIBRARY_PATH}") $(srcdir)/runtest + $(srcdir)/runtest testscripts = sm-sign+verify sm-verify |