Browse Source

Bugfix: configure: Show --enable-bfsb/metabank in help, since they are disabled by default

Luke Dashjr 12 years ago
parent
commit
8828ce991a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      configure.ac

+ 2 - 2
configure.ac

@@ -468,7 +468,7 @@ AM_CONDITIONAL([HAS_BITFURY], [test x$bitfury = xyes])
 
 bfsb=no
 AC_ARG_ENABLE([bfsb],
-	[AC_HELP_STRING([--disable-bfsb],[Compile support for BFSB (default disabled)])],
+	[AC_HELP_STRING([--enable-bfsb],[Compile support for BFSB (default disabled)])],
 	[bfsb=$enableval]
 	)
 if test "x$bfsb" = "xyes"; then
@@ -503,7 +503,7 @@ AM_CONDITIONAL([HAS_LITTLEFURY], [test x$littlefury = xyes])
 
 metabank=no
 AC_ARG_ENABLE([metabank],
-	[AC_HELP_STRING([--disable-metabank],[Compile support for Metabank (default disabled)])],
+	[AC_HELP_STRING([--enable-metabank],[Compile support for Metabank (default disabled)])],
 	[metabank=$enableval]
 	)
 if test "x$metabank" = "xyes"; then