summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Beckmann <anbe@debian.org>2013-10-21 23:29:36 +0200
committerAndreas Beckmann <anbe@debian.org>2013-10-21 23:29:36 +0200
commit3cf3ed72348081c2749c32e6f930f5e3faa6dfec (patch)
treef21db66d6fd7a85632a6bddfca67af7ad40e9cae
parent4d8da83a49efb2c7f101e2c36ea9c5d4c72c71d2 (diff)
downloadsendmail-3cf3ed72348081c2749c32e6f930f5e3faa6dfec.tar.gz
fix libdb-dev autodetection
by adding missing quoting
-rw-r--r--debian/build/debian/control.m4.in1
-rw-r--r--debian/changelog1
-rw-r--r--debian/configure.ac2
3 files changed, 2 insertions, 2 deletions
diff --git a/debian/build/debian/control.m4.in b/debian/build/debian/control.m4.in
index f3df451..8395c83 100644
--- a/debian/build/debian/control.m4.in
+++ b/debian/build/debian/control.m4.in
@@ -38,7 +38,6 @@ Build-Depends:
linux-libc-dev (>= 2.6.21-3) [linux-any],
groff,
bsdmainutils,
- libdb-dev,
@sm_badepends@
Build-Conflicts:
libbind-dev,
diff --git a/debian/changelog b/debian/changelog
index 220c9bf..564f6da 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,6 +15,7 @@ sendmail (8.14.4-4.2) UNRELEASED; urgency=low
* debian/*/Makefile.am: Recover from Makefile.in.
* debian/rules: refresh-debian-configure: Refresh all Makefile.in, too.
* debian/build/: Update automake helper scripts to automake 1.14.
+ * debian/configure.ac: Fix libdb-dev autodetection.
-- Andreas Beckmann <anbe@debian.org> Sat, 19 Oct 2013 02:41:51 +0200
diff --git a/debian/configure.ac b/debian/configure.ac
index 61e5bd2..0138835 100644
--- a/debian/configure.ac
+++ b/debian/configure.ac
@@ -971,7 +971,7 @@ if test $sm_enable_newdb != no; then
fi;
junk=$(echo "${sm_newdb_lib}" | sed -e 's/^db\(-\)\?//');
sm_databases="$sm_databases, DB";
- if test $junk != 1; then
+ if test "$junk" != 1; then
sm_badepends="$sm_badepends, libdb${junk}-dev";
fi;
sm_mapdef="$sm_mapdef -DNEWDB";