win32 config tweak (suggested by Greg Chapman <glc@well.com>)
authorGurusamy Sarathy <gsar@cpan.org>
Tue, 14 Sep 1999 08:35:00 +0000 (08:35 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Tue, 14 Sep 1999 08:35:00 +0000 (08:35 +0000)
p4raw-id: //depot/perl@4148

win32/config_sh.PL

index fc0daf0..3edc20b 100644 (file)
@@ -36,12 +36,13 @@ while (<>)
  {
   s/~([\w_]+)~/$opt{$1}/g;
   if (/^([\w_]+)=(.*)$/) {
+    my($k,$v) = ($1,$2);
     # this depends on cf_time being empty in the template (or we'll get a loop)
-    if ($1 eq 'cf_time') {
-      $_ = "$1='" . localtime(time) . "'\n" if $2 =~ /^\s*'\s*'/;
+    if ($k eq 'cf_time') {
+      $_ = "$k='" . localtime(time) . "'\n" if $v =~ /^\s*'\s*'/;
     }
-    elsif (exists $opt{$1}) {
-      $_ = "$1='$opt{$1}'\n";
+    elsif (exists $opt{$k}) {
+      $_ = "$k='$opt{$k}'\n";
     }
   }
   print;