diff options
author | Werner Koch <wk@gnupg.org> | 2009-03-03 10:21:25 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2009-03-03 10:21:25 +0100 |
commit | e240750936b478cef39b482db37e6f1da872c1f1 (patch) | |
tree | e98c1ba042b1f1ca9993bce45764d1569dbe876f /tests/pkits | |
parent | Add --reload command to gpgconf. (diff) | |
download | gnupg2-e240750936b478cef39b482db37e6f1da872c1f1.tar.xz gnupg2-e240750936b478cef39b482db37e6f1da872c1f1.zip |
fix for pkits.
Diffstat (limited to 'tests/pkits')
-rw-r--r-- | tests/pkits/ChangeLog | 4 | ||||
-rw-r--r-- | tests/pkits/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/pkits/ChangeLog b/tests/pkits/ChangeLog index 185ff98bc..9a8846f1d 100644 --- a/tests/pkits/ChangeLog +++ b/tests/pkits/ChangeLog @@ -1,3 +1,7 @@ +2009-03-03 Werner Koch <wk@g10code.com> + + * Makefile.am (run-all-tests): Also use /bin/pwd here. + 2009-02-19 Werner Koch <wk@g10code.com> * Makefile.am (TESTS_ENVIRONMENT): Use /bin/pwd diff --git a/tests/pkits/Makefile.am b/tests/pkits/Makefile.am index 6285da43c..f59e5ec97 100644 --- a/tests/pkits/Makefile.am +++ b/tests/pkits/Makefile.am @@ -64,7 +64,7 @@ inittests.stamp: inittests run-all-tests: inittests.stamp @set -e; \ - GNUPGHOME=`pwd`; export GNUPGHOME;\ + GNUPGHOME=`/bin/pwd`; export GNUPGHOME;\ unset GPG_AGENT_INFO; \ for tst in $(testscripts); do \ if ./$${tst}; then : ; \ |