Bugfix Makefile.PL check for dollar signs
authorMichael Hafen <mdhafen@tech.washk12.org>
Fri, 19 Feb 2010 16:24:14 +0000 (09:24 -0700)
committerGalen Charlton <gmcharlt@gmail.com>
Sat, 20 Feb 2010 22:56:02 +0000 (17:56 -0500)
Missed the lines where dollar signs are quoted for DB_PASS and ZEBRA_PASS.
Don't need to quote (double-quote) those two lines now.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>

Makefile.PL

index 9adf81b..6829fed 100644 (file)
@@ -1607,13 +1607,6 @@ sub postamble {
     # variables -- this is for the use of
     # rewrite-confg.PL
 
-    # quote '$' in the two password parameters
-    my %config = %config;
-    $config{'DB_PASS'} =~ s/\$/\$\$/g;
-    if ($config{'INSTALL_ZEBRA'} eq "yes") {
-        $config{'ZEBRA_PASS'} =~ s/\$/\$\$/g;
-    }
-
     my $env;
        # Hereagain, we must alter syntax per platform...
        if ( $^O eq 'MSWin32' ) {