summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-12-05 14:04:59 -0400
committerJoey Hess <joey@kitenet.net>2013-12-05 14:04:59 -0400
commitdf54af7aa5e75400fee01aff8c8d92d4d976a8db (patch)
treef7ac046c6a4319026bafbc59b516b0ab732da87c
parente3e118fb95e5d19c4c397bd3dcfe6759f683d919 (diff)
cmake: Configure with -DCMAKE_BUILD_TYPE=None Closes: #701233
-rw-r--r--Debian/Debhelper/Buildsystem/cmake.pm2
-rw-r--r--debian/changelog7
2 files changed, 8 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/cmake.pm b/Debian/Debhelper/Buildsystem/cmake.pm
index d47821ca..db971db1 100644
--- a/Debian/Debhelper/Buildsystem/cmake.pm
+++ b/Debian/Debhelper/Buildsystem/cmake.pm
@@ -43,7 +43,7 @@ sub configure {
# Standard set of cmake flags
push @flags, "-DCMAKE_INSTALL_PREFIX=/usr";
push @flags, "-DCMAKE_VERBOSE_MAKEFILE=ON";
- push @flags, "-DCMAKE_BUILD_TYPE=RelWithDebInfo";
+ push @flags, "-DCMAKE_BUILD_TYPE=None";
# CMake doesn't respect CPPFLAGS, see #653916.
if ($ENV{CPPFLAGS} && ! compat(8)) {
diff --git a/debian/changelog b/debian/changelog
index 77757da9..526ca9fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+debhelper (9.20131128) UNRELEASED; urgency=low
+
+ * cmake: Configure with -DCMAKE_BUILD_TYPE=None
+ Closes: #701233
+
+ -- Joey Hess <joeyh@debian.org> Thu, 05 Dec 2013 14:04:01 -0400
+
debhelper (9.20131127) unstable; urgency=low
* dh_compress: Exclude several more compressed file formats.