Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2016-07-26 19:07:32 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2016-07-26 19:07:32 +0300
commitbf4ea0cb04a450af3a5ad3bafa278667452675b5 (patch)
treecd435af75d545e64bdb16206a5ebcd59f2bef1e6 /main/configure.in
parent1e3f9a84ae2992a9addc4bc3928d271f676dfd5f (diff)
Don't default to release build
It was impossible to configure a debug build w/ top-level configure
Diffstat (limited to 'main/configure.in')
-rw-r--r--main/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/configure.in b/main/configure.in
index 49019ce4c7..8c170dec7a 100644
--- a/main/configure.in
+++ b/main/configure.in
@@ -191,8 +191,8 @@ AM_CONDITIONAL(ENABLE_GIT, test x$enable_git = xyes)
AC_ARG_ENABLE(release,
AC_HELP_STRING([--enable-release],
- [build release mode [default=yes]]),
- enable_release=${enableval}, enable_release=yes)
+ [build release mode [default=no]]),
+ enable_release=${enableval}, enable_release=no)
AM_CONDITIONAL(RELEASE_BUILDS, [test x$enable_release = xyes])