summaryrefslogtreecommitdiff
path: root/Debian/Debhelper
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 /Debian/Debhelper
parente3e118fb95e5d19c4c397bd3dcfe6759f683d919 (diff)
cmake: Configure with -DCMAKE_BUILD_TYPE=None Closes: #701233
Diffstat (limited to 'Debian/Debhelper')
-rw-r--r--Debian/Debhelper/Buildsystem/cmake.pm2
1 files changed, 1 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)) {