diff options
author | Jaak Ristioja <jaak.ristioja@cyber.ee> | 2013-01-29 10:48:14 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-02-10 11:31:04 +0100 |
commit | 857b78842e7b4d0bc02869e21fa9da967df7bc6c (patch) | |
tree | 3dea617f0b6076abb7c4e348f24881e73104d93f /Makefile.am | |
parent | a67776377c7da843087c2700deff91e97fa390db (diff) | |
download | gnutls-857b78842e7b4d0bc02869e21fa9da967df7bc6c.tar.gz |
Prevent libdane pkgconfig stuff from being installed if libdane support is disabled.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index c4a4bfada6..a37e7e1c20 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,9 +21,13 @@ DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --disable-valgrind-tests -SUBDIRS = gl lib extra libdane po +SUBDIRS = gl lib extra -SUBDIRS += src doc tests +if ENABLE_DANE +SUBDIRS += libdane +endif + +SUBDIRS += po src doc tests if HAVE_GUILE SUBDIRS += guile |