diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-14 04:13:50 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-14 04:13:50 +0000 |
commit | 00b027972d07e1d53ec42ba7bbc007b558fb67f0 (patch) | |
tree | 069345c0006e2ad68b25c7b5cfcef49ce612ebfd /ext/SDBM_File/Makefile.PL | |
parent | e601c439adce167078ac7b49550c0418ace86f94 (diff) | |
download | perl-00b027972d07e1d53ec42ba7bbc007b558fb67f0.tar.gz |
Redo #7679 with LFs instead of CRLFs.
p4raw-id: //depot/perl@7680
Diffstat (limited to 'ext/SDBM_File/Makefile.PL')
-rw-r--r-- | ext/SDBM_File/Makefile.PL | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/ext/SDBM_File/Makefile.PL b/ext/SDBM_File/Makefile.PL index bff3e7b3bc..132bdadf26 100644 --- a/ext/SDBM_File/Makefile.PL +++ b/ext/SDBM_File/Makefile.PL @@ -1,5 +1,5 @@ use ExtUtils::MakeMaker; -use Config;
+use Config; # The existence of the ./sdbm/Makefile.PL file causes MakeMaker # to automatically include Makefile code for the targets @@ -22,26 +22,26 @@ WriteMakefile( sub MY::postamble { if ($^O =~ /MSWin32/ && Win32::IsWin95()) { - if ($Config{'make'} =~ /dmake/i) {
- # dmake-specific
- return <<EOT;
+ if ($Config{'make'} =~ /dmake/i) { + # dmake-specific + return <<EOT; $(MYEXTLIB): sdbm/Makefile @[ cd sdbm $(MAKE) all cd .. ] -EOT
- } elsif ($Config{'make'} =~ /nmake/i) {
- #
- return <<'EOT';
-$(MYEXTLIB): sdbm/Makefile
- cd sdbm
- $(MAKE) all
- cd ..
-EOT
- }
- } elsif ($^O ne 'VMS') {
+EOT + } elsif ($Config{'make'} =~ /nmake/i) { + # + return <<EOT; +$(MYEXTLIB): sdbm/Makefile + cd sdbm + $(MAKE) all + cd .. +EOT + } +} elsif ($^O ne 'VMS') { ' $(MYEXTLIB): sdbm/Makefile cd sdbm && $(MAKE) all |