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:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-10-01 16:27:42 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-10-01 16:27:42 +0300
commit23fd9dd99ed670d8a77f811769f48c584e76007c (patch)
tree4a1459db7e5ffddb92b3cd94069af4faca0cfdf2 /main/configure.in
parentbca27110944f2d6e88891df2c2fbbd3d4ce3e9db (diff)
[Build] Enable release builds by default.
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 05cfae5a1e..d5d1fbaca7 100644
--- a/main/configure.in
+++ b/main/configure.in
@@ -180,8 +180,8 @@ AM_CONDITIONAL(ENABLE_GIT, test x$enable_git = xyes)
AC_ARG_ENABLE(release,
AC_HELP_STRING([--enable-release],
- [build release mode [default=no]]),
- enable_release=${enableval}, enable_release=no)
+ [build release mode [default=yes]]),
+ enable_release=${enableval}, enable_release=yes)
AM_CONDITIONAL(RELEASE_BUILDS, [test x$enable_release = xyes])