]> www.infradead.org Git - users/mchehab/rasdaemon.git/commitdiff
configure: Fix help string for sqlite3
authorTony Luck <tony.luck@intel.com>
Fri, 24 May 2013 16:29:06 +0000 (09:29 -0700)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sun, 26 May 2013 11:13:50 +0000 (08:13 -0300)
The AS_HELP_STRING has a typo and says to use "--enable-sqlite" when
it should say "-enable-sqlite3"

Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
configure.ac

index 2e18b6807beca41e8395c78dcb429aa65de70b6f..535e50f71fd23309fe3ac6f5bf6a1cf4a3e19c78 100644 (file)
@@ -22,7 +22,7 @@ AC_CONFIG_FILES([
 ])
 
 AC_ARG_ENABLE([sqlite3],
-    AS_HELP_STRING([--enable-sqlite], [enable storing data at SQL lite database (currently experimental)]))
+    AS_HELP_STRING([--enable-sqlite3], [enable storing data at SQL lite database (currently experimental)]))
 
 AS_IF([test "x$enable_sqlite3" = "xyes"], [
   AC_CHECK_LIB(sqlite3, sqlite3_open,[echo "found sqlite3"] , AC_MSG_ERROR([*** Unable to find sqlite3 library]), )