diff options
author | Emmanuele Bassi <ebassi@openedhand.com> | 2008-06-13 11:22:35 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@openedhand.com> | 2008-06-13 11:22:35 +0100 |
commit | bc5c7225535ef447743ac59ecdba8c237549a108 (patch) | |
tree | bf3fd588a8a27fb0c906baae18d7348fe18a6283 /json-glib | |
parent | 81c02ef3db6901655f8a7117e5e2675d37096daf (diff) | |
download | json-glib-bug-965.tar.gz |
Conditionally compile the test suitebug-965
If the --disable-glibtest command line switch has been given to the
configure script, the test suite should be disabled and not built.
This commit disables recursion in the tests/ and json-glib/tests
when the ENABLE_GLIB_TEST Makefile conditional has been set.
Diffstat (limited to 'json-glib')
-rw-r--r-- | json-glib/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/json-glib/Makefile.am b/json-glib/Makefile.am index b57b78d..4060d66 100644 --- a/json-glib/Makefile.am +++ b/json-glib/Makefile.am @@ -1,6 +1,8 @@ include $(top_srcdir)/Makefile.decl +if ENABLE_GLIB_TEST SUBDIRS = . tests +endif DIST_SUBDIRS = tests |