summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-12-17 11:38:12 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-12-17 11:38:12 +0200
commitbef37587d3a0eb9a59661bd02c5e8b46a6c24e7a (patch)
treec747bbe34cfb251e8bebf7a6ae773ad76fce76be /configure.ac
parent2b50ad6fa4d936ef555235cb032cf7ed9e14ac67 (diff)
downloadrpm-bef37587d3a0eb9a59661bd02c5e8b46a6c24e7a.tar.gz
rpm-bef37587d3a0eb9a59661bd02c5e8b46a6c24e7a.tar.bz2
rpm-bef37587d3a0eb9a59661bd02c5e8b46a6c24e7a.zip
Don't bother configuring db3 directory if using external db
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ddcf5f89f..31d11943a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1048,7 +1048,9 @@ AC_SUBST(RPMCONFIGDIR)
AC_SUBST(OBJDUMP)
-AC_CONFIG_SUBDIRS(db3)
+if test "$with_external_db" = no; then
+ AC_CONFIG_SUBDIRS(db3)
+fi
AM_CONDITIONAL([WITH_INTERNAL_DB],[test "$with_external_db" = no])
AM_CONDITIONAL([DOXYGEN],[test "$DOXYGEN" != no])