[dpkg] 15/200: build: Fix inversion logic in libmd configure check when requested explicitly
Ximin Luo
infinity0 at debian.org
Wed Apr 5 15:17:08 UTC 2017
This is an automated email from the git hooks/post-receive script.
infinity0 pushed a commit to branch master
in repository dpkg.
commit f8b99da0c0858c919fd21e07774c8a001e91e1ba
Author: Guillem Jover <guillem at debian.org>
Date: Tue Nov 8 03:01:04 2016 +0100
build: Fix inversion logic in libmd configure check when requested explicitly
---
debian/changelog | 2 ++
m4/dpkg-libs.m4 | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index 5438bd4..e08ad05 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,8 @@ dpkg (1.18.14) UNRELEASED; urgency=medium
[ Guillem Jover ]
* Test suite:
- Do not fail tests on missing fakeroot, just skip them.
+ * Build system:
+ - Fix inversion logic in libmd configure check when requested explicitly.
[ Updated man pages translations ]
* German (Helge Kreutzmann).
diff --git a/m4/dpkg-libs.m4 b/m4/dpkg-libs.m4
index 50519d6..48c4f7b 100644
--- a/m4/dpkg-libs.m4
+++ b/m4/dpkg-libs.m4
@@ -19,7 +19,7 @@ AC_DEFUN([DPKG_LIB_MD], [
have_libmd="yes"
])
])
- AS_IF([test "x$have_libmd" = "xyes" && test "x$with_libmd" = "xyes"], [
+ AS_IF([test "x$with_libmd" = "xyes" && test "x$have_libmd" = "xno"], [
AC_MSG_FAILURE([md5 digest not found in libmd])
])
])
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/dpkg.git
More information about the Reproducible-commits
mailing list