diff options
-rw-r--r-- | Debian/Debhelper/Buildsystem/cmake.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 7 |
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. |