[frogr] meson: Use debugoptimized in the configure script adapter by default



commit f8b5969ddd3a745c35553079cfee4dea1567dd9c
Author: Mario Sanchez Prada <msanchez gnome org>
Date:   Wed May 24 06:59:16 2017 +0100

    meson: Use debugoptimized in the configure script adapter by default
    
    It seems to me now that this is actually closer to what a normal
    autotools-based project would do by default, and probably more
    useful for packagers that might expect to be building with at
    least -g when running ./configure && make, so that they can
    strip the debug symbols out to a different package later on.

 configure |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/configure b/configure
index c3d93d6..97d20e3 100755
--- a/configure
+++ b/configure
@@ -55,7 +55,7 @@ sanitycheck() {
 sanitycheck MESON 'meson'
 sanitycheck NINJA 'ninja' 'ninja-build'
 
-build_type='release'
+build_type='debugoptimized'
 enable_header_bar='-Denable-header-bar=true'
 enable_video='-Denable-video=true'
 
@@ -125,8 +125,8 @@ END
 
 echo "Summary:"
 echo "  meson:....... ${MESON}"
-echo "  ninja:....... ${NINJA}"
 echo "  build type:.. ${build_type}"
+echo "  ninja:....... ${NINJA}"
 echo "  prefix:...... ${prefix}"
 echo "  bindir:...... ${bindir}"
 echo "  sbindir:..... ${sbindir}"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]