# HG changeset patch # User John Donoghue # Date 1411473436 14400 # Node ID cffa8fa688ed945d66fcffbcea61047184cd575d # Parent 89d99c28a6a1ab0e1a941efee4e0b5f975570c58 build: update --enable-stable option to reflect that it is the default * configure.ac: change --enable-stable help to --disable-stable diff -r 89d99c28a6a1 -r cffa8fa688ed configure.ac --- a/configure.ac Mon Sep 22 14:31:06 2014 -0400 +++ b/configure.ac Tue Sep 23 07:57:16 2014 -0400 @@ -151,9 +151,9 @@ AC_SUBST(ENABLE_OPENBLAS) ENABLE_STABLE=yes -AC_ARG_ENABLE(stable, - [AS_HELP_STRING([--enable-stable], - [Enable stable build of octave instead of devel octave])], +AC_ARG_ENABLE([stable], + [AS_HELP_STRING([--disable-stable], + [Disable stable build of octave and use devel octave instead])], [if test "$enableval" = no; then ENABLE_STABLE=no; fi], []) AC_SUBST(ENABLE_STABLE)