Skip to content

Commit

Permalink
Fix a syntax error, and have "make dist" fail all the time under old
Browse files Browse the repository at this point in the history
versions of Perl.
  • Loading branch information
rcaputo committed Nov 27, 2004
1 parent f7967fc commit 3a4a653
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions mylib/Makefile-5004.pm
Expand Up @@ -46,7 +46,7 @@ coverage: Makefile
cover: coverage
ppmdist:
\cIecho Use a recent version of Perl to build the PPM distribution.
\cIecho Use a modern version of Perl to build the PPM distribution.
\cIfalse
EOF
}
Expand All @@ -58,12 +58,15 @@ WriteMakefile(
dist => {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
PREOP => ( 'false' ),
PREOP => (
'echo Use a modern version of Perl to build distributions.; ' .
'false'
),
},

clean => {
FILES => $clean_files,
}
},

PL_FILES => { },
PREREQ_PM => \%core_requirements,
Expand Down

0 comments on commit 3a4a653

Please sign in to comment.