Change 11672 by jhi@alpha on 2001/08/15 03:15:25
Subject: [PATCH bleadperl] fixing SDBM_File problems under win32
From: Nikola Knezevic <[EMAIL PROTECTED]>
Date: Tue, 14 Aug 2001 22:30:11 +0200
Message-ID: <[EMAIL PROTECTED]>
Combination of nmake, quoting, and Perl expanded $( in here-doc.
Affected files ...
... //depot/perl/ext/SDBM_File/Makefile.PL#16 edit
Differences ...
==== //depot/perl/ext/SDBM_File/Makefile.PL#16 (text) ====
Index: perl/ext/SDBM_File/Makefile.PL
--- perl/ext/SDBM_File/Makefile.PL.~1~ Tue Aug 14 21:30:05 2001
+++ perl/ext/SDBM_File/Makefile.PL Tue Aug 14 21:30:05 2001
@@ -24,7 +24,7 @@
if ($^O =~ /MSWin32/ && Win32::IsWin95()) {
if ($Config{'make'} =~ /dmake/i) {
# dmake-specific
- return <<EOT;
+ return <<'EOT';
$(MYEXTLIB): sdbm/Makefile
@[
cd sdbm
@@ -34,7 +34,7 @@
EOT
} elsif ($Config{'make'} =~ /nmake/i) {
#
- return <<EOT;
+ return <<'EOT';
$(MYEXTLIB): sdbm/Makefile
cd sdbm
$(MAKE) all
End of Patch.