cpp,python: Respect --disable-gpg-test for tests
lang/cpp/Makefile.am (SUBDIRS): Depend tests in RUN_GPG_TESTS. lang/python/Makefile.am (SUBDIRS): Ditto. -- This is similar to the core and qt switch to disable the tests. Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com> ChangeLog entries added by wk.
This commit is contained in:
parent
fbc3963d62
commit
e2103be390
@ -18,6 +18,12 @@
|
|||||||
# License along with this program; if not, see <https://gnu.org/licenses/>.
|
# License along with this program; if not, see <https://gnu.org/licenses/>.
|
||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
SUBDIRS = src tests
|
if RUN_GPG_TESTS
|
||||||
|
tests = tests
|
||||||
|
else
|
||||||
|
tests =
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = src ${tests}
|
||||||
|
|
||||||
EXTRA_DIST = README
|
EXTRA_DIST = README
|
||||||
|
@ -23,7 +23,13 @@ EXTRA_DIST = \
|
|||||||
gpgme.i \
|
gpgme.i \
|
||||||
helpers.c helpers.h private.h
|
helpers.c helpers.h private.h
|
||||||
|
|
||||||
SUBDIRS = . tests examples doc src
|
if RUN_GPG_TESTS
|
||||||
|
tests = tests
|
||||||
|
else
|
||||||
|
tests =
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = . ${tests} examples doc src
|
||||||
|
|
||||||
.PHONY: prepare
|
.PHONY: prepare
|
||||||
prepare: copystamp
|
prepare: copystamp
|
||||||
|
Loading…
Reference in New Issue
Block a user