diff options
author | Werner Koch <wk@gnupg.org> | 2009-03-03 10:47:48 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2009-03-03 10:47:48 +0100 |
commit | cccda0c269b9c0c8c36d7df5344bc14ea5f45a37 (patch) | |
tree | f8b83b052b1a4303bd701863d3a0aa14d92e4ffa /tests | |
parent | fix for pkits. (diff) | |
download | gnupg2-cccda0c269b9c0c8c36d7df5344bc14ea5f45a37.tar.xz gnupg2-cccda0c269b9c0c8c36d7df5344bc14ea5f45a37.zip |
Arggg, forgot one other place.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pkits/ChangeLog | 2 | ||||
-rwxr-xr-x | tests/pkits/inittests | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/pkits/ChangeLog b/tests/pkits/ChangeLog index 9a8846f1d..992d1dfbb 100644 --- a/tests/pkits/ChangeLog +++ b/tests/pkits/ChangeLog @@ -1,5 +1,7 @@ 2009-03-03 Werner Koch <wk@g10code.com> + * inittests (clean_files): Use /bin/pwd here as well. + * Makefile.am (run-all-tests): Also use /bin/pwd here. 2009-02-19 Werner Koch <wk@g10code.com> diff --git a/tests/pkits/inittests b/tests/pkits/inittests index ec3e6d8cc..5c29bdc49 100755 --- a/tests/pkits/inittests +++ b/tests/pkits/inittests @@ -48,7 +48,7 @@ if [ "$1" = "--clean" ]; then exit 0 fi -if [ "$GNUPGHOME" != "`pwd`" ]; then +if [ "$GNUPGHOME" != "`/bin/pwd`" ]; then echo "inittests: please set GNUPGHOME to the tests/pkits directory" >&2 exit 1 fi |