diff options
| author | Andre Heinecke <[email protected]> | 2016-07-14 14:32:56 +0000 | 
|---|---|---|
| committer | Andre Heinecke <[email protected]> | 2016-07-14 14:32:56 +0000 | 
| commit | e7f4c364732660c6cda25720b7dbc5b1c917e368 (patch) | |
| tree | ba68d5ca84ebd4bc4937b1f2a0a198d528407f12 | |
| parent | Qt: Fix tests if gpg2 is gpg (diff) | |
| download | gpgme-e7f4c364732660c6cda25720b7dbc5b1c917e368.tar.gz gpgme-e7f4c364732660c6cda25720b7dbc5b1c917e368.zip  | |
Qt: Fix usage of ignore-invalid-option in tests
* Makefile.am (pubring-stamp): Fix config.
| -rw-r--r-- | lang/qt/tests/Makefile.am | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/qt/tests/Makefile.am b/lang/qt/tests/Makefile.am index e2ded78a..348c05bd 100644 --- a/lang/qt/tests/Makefile.am +++ b/lang/qt/tests/Makefile.am @@ -69,10 +69,10 @@ export GNUPGHOME := $(abs_builddir)  ./pubring-stamp: $(top_srcdir)/tests/gpg/pubdemo.asc \  	             $(top_srcdir)/tests/gpg/secdemo.asc -	echo "ignore-invalid-options" > gpg-agent.conf -	echo "allow-loopback-pinentry" > gpg-agent.conf -	echo "ignore-invalid-options" > gpg.conf -	echo "pinentry-mode loopback" > gpg.conf +	echo "ignore-invalid-option allow-loopback-pinentry" > $(abs_builddir)/gpg-agent.conf +	echo "allow-loopback-pinentry" >> gpg-agent.conf +	echo "ignore-invalid-option pinentry-mode" > gpg.conf +	echo "pinentry-mode loopback" >> gpg.conf  	$(GPG) --no-permission-warning \             --import $(top_srcdir)/tests/gpg/pubdemo.asc  	$(GPG) --no-permission-warning \  | 
