]> granicus.if.org Git - pdns/commitdiff
Lowercase shell variables
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Wed, 24 Dec 2014 17:38:24 +0000 (18:38 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Wed, 24 Dec 2014 17:38:24 +0000 (18:38 +0100)
configure.ac

index ac6741aec1da49730957aa704c76a899d8af255e..28cccec44b3effcbe3b078d25a7ea11637a896f0 100644 (file)
@@ -89,15 +89,15 @@ dnl Allow user to require SQLite3
 AC_MSG_CHECKING([whether user requires sqlite3])
 AC_ARG_WITH([sqlite3],
   [AS_HELP_STRING([--with-sqlite3],[include sqlite3 driver @<:@default=no@:>@])],
-  [WITH_SQLITE3=$withval],
-  [WITH_SQLITE3=no]
+  [with_sqlite3=$withval],
+  [with_sqlite3=no]
 )
-AC_MSG_RESULT([$WITH_SQLITE3])
+AC_MSG_RESULT([$with_sqlite3])
 SQLITE3PC=sqlite3
-if test "$WITH_SQLITE3" != "no"; then
+if test "$with_sqlite3" != "no"; then
   needsqlite3=yes
-  if test "$WITH_SQLITE3" != "yes"; then
-    SQLITE3PC=$WITH_SQLITE3
+  if test "$with_sqlite3" != "yes"; then
+    SQLITE3PC=$with_sqlite3
   fi
 fi