diff options
author | Justus Winter <[email protected]> | 2016-07-06 09:01:55 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-07-07 11:56:37 +0000 |
commit | 38c408560c6ebc3ea5eeeade01d38750bf5799e5 (patch) | |
tree | 592df02c5aee5ce795d1259bc3e37a4cf2047b8a | |
parent | cpp: Fix distcheck. (diff) | |
download | gpgme-38c408560c6ebc3ea5eeeade01d38750bf5799e5.tar.gz gpgme-38c408560c6ebc3ea5eeeade01d38750bf5799e5.zip |
qt: Fix distcheck.
* lang/qt/src/Makefile.am (qgpgme_headers): Add missing file.
(CLEANFILES): Add generated file.
* lang/qt/tests/Makefile.am (clean-local): Remove private keys.
Signed-off-by: Justus Winter <[email protected]>
-rw-r--r-- | lang/qt/src/Makefile.am | 5 | ||||
-rw-r--r-- | lang/qt/tests/Makefile.am | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lang/qt/src/Makefile.am b/lang/qt/src/Makefile.am index 7de3ef63..187bc7f9 100644 --- a/lang/qt/src/Makefile.am +++ b/lang/qt/src/Makefile.am @@ -63,7 +63,8 @@ qgpgme_headers= \ importjob.h \ keygenerationjob.h \ keylistjob.h \ - listallkeysjob.h + listallkeysjob.h \ + verifydetachedjob.h private_qgpgme_headers = \ qgpgme_export.h \ @@ -187,7 +188,7 @@ uninstall-local: uninstall-cmake-files BUILT_SOURCES = $(qgpgme_moc_sources) -CLEANFILES = $(qgpgme_moc_sources) +CLEANFILES = $(qgpgme_moc_sources) QGpgmeConfig.cmake nodist_libqgpgme_la_SOURCES = $(qgpgme_moc_sources) diff --git a/lang/qt/tests/Makefile.am b/lang/qt/tests/Makefile.am index 379abb3e..c49d85f8 100644 --- a/lang/qt/tests/Makefile.am +++ b/lang/qt/tests/Makefile.am @@ -61,6 +61,9 @@ CLEANFILES = secring.gpg pubring.gpg pubring.kbx trustdb.gpg dirmngr.conf \ gpg-agent.conf pubring.kbx~ S.gpg-agent gpg.conf pubring.gpg~ \ random_seed S.gpg-agent .gpg-v21-migrated pubring-stamp $(moc_files) +clean-local: + -rm -fR -- private-keys-v1.d + export GNUPGHOME := $(abs_builddir) ./pubring-stamp: $(top_srcdir)/tests/gpg/pubdemo.asc \ |