Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
default of supernovae should be the opposite of maintainer-mode
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 24 Nov 2009 11:36:15 +0000 (11:36 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 24 Nov 2009 11:36:15 +0000 (11:36 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6855 48e7efb5-ca39-0410-a469-dd3cf9ba447f

configure.ac

index 6b92886..7c5d7f8 100644 (file)
@@ -346,14 +346,15 @@ SG_COMPILE_FLAGS
 ##
 if test x$USE_MAINTAINER_MODE = xyes 
 then
-   not_maintainer_mode=yes
-else
    not_maintainer_mode=no
+else
+   not_maintainer_mode=yes
 fi
 
 AC_ARG_ENABLE(supernovae,
               AS_HELP_STRING([--enable-supernovae],[Put the whole library in one compilation unit only to help gcc optimizing the code]),
-             supernovae=$enableval,supernovae=$not_maintainer_mode)
+             [supernovae=$enableval],
+             [supernovae=$not_maintainer_mode])
 AM_CONDITIONAL(SUPERNOVAE_MODE, test x$supernovae != xno)
 
 AC_SUBST([CFLAGS])