]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Fix typo in configure.in that breaks --with-db-password option
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 2 Oct 2008 15:26:05 +0000 (15:26 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 2 Oct 2008 15:26:05 +0000 (15:26 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.4@7683 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/configure

index 2e0b76b6759f2e0245f7f8a61239c72e3ef326c3..feeb67a129204fd9673e22a0952f72f8d54ac89f 100755 (executable)
@@ -1511,12 +1511,6 @@ Optional Packages:
   --with-db-name=DBNAME               specify database name (default bacula)
   --with-db-user=UNAME        specify database user (default bacula)
   --with-db-password=UNAME        specify database password (default *none*)
-
-       if test "x$withval" != "x" ; then
-            db_password=$withval
-       fi
-
-
   --with-dir-user=USER          specify user for Director daemon
   --with-dir-group=GROUP                specify group for Director daemon
   --with-sd-user=USER           specify user for Storage daemon
@@ -17067,6 +17061,11 @@ db_password=
 # Check whether --with-db_password was given.
 if test "${with_db_password+set}" = set; then
   withval=$with_db_password;
+       if test "x$withval" != "x" ; then
+            db_password=$withval
+       fi
+
+
 fi