From 43c0277ac533cdf5d51a8c4c272dcbae06721a1d Mon Sep 17 00:00:00 2001 From: Michael Hafen Date: Fri, 19 Feb 2010 09:24:14 -0700 Subject: [PATCH] Bugfix Makefile.PL check for dollar signs 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 --- Makefile.PL | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 9adf81b987..6829fed28d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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' ) { -- 2.20.1