Skip to content

Commit

Permalink
Have Makefile.PL touch the CHANGES file so that "make dist" will find
Browse files Browse the repository at this point in the history
it.  Even though we generate CHANGES from the CVS log, WriteMakeFile
needs to see something there first.
  • Loading branch information
rcaputo committed Jun 8, 2002
1 parent 11db5d3 commit 0ffdc69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mylib/Makefile-5004.pm
Expand Up @@ -10,8 +10,8 @@ sub MY::test {
"\ntest ::\n\t\$(FULLPERL) ./lib/deptest.perl\n" . shift->SUPER::test(@_);
}

# See lib/ExtUtils/MakeMaker.pm for details of how to influence the
# contents of the Makefile that is written.
# Touch CHANGES so it exists.
open(CHANGES, ">>CHANGES") and close CHANGES;

WriteMakefile
( NAME => 'POE',
Expand Down
2 changes: 1 addition & 1 deletion mylib/Makefile-5005.pm
Expand Up @@ -76,7 +76,7 @@ ExtUtils::AutoInstall->import
);

# Touch CHANGES so it exists.
# open(CHANGES, ">>CHANGES") and close CHANGES;
open(CHANGES, ">>CHANGES") and close CHANGES;

WriteMakefile
( NAME => 'POE',
Expand Down

0 comments on commit 0ffdc69

Please sign in to comment.