In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/0bf519881fb841b70dd052211eeee7f0425e5168?hp=67fbae813abe5e9ea6db14dedec317efbbed87b3>
- Log ----------------------------------------------------------------- commit 0bf519881fb841b70dd052211eeee7f0425e5168 Author: Steve Hay <[email protected]> Date: Sun Feb 1 00:04:28 2015 +0000 RMG - Update local_patches[] code snippet with current code ----------------------------------------------------------------------- Summary of changes: Porting/release_managers_guide.pod | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod index e7ee36a..7405a96 100644 --- a/Porting/release_managers_guide.pod +++ b/Porting/release_managers_guide.pod @@ -797,7 +797,9 @@ a final release, remove it. For example: static const char * const local_patches[] = { NULL + ,"RC1" - PERL_GIT_UNPUSHED_COMMITS /* do not remove this line */ + #ifdef PERL_GIT_UNCOMMITTED_CHANGES + ,"uncommitted-changes" + #endif Be sure to commit your change: @@ -1076,7 +1078,9 @@ Disarm the F<patchlevel.h> change; for example, static const char * const local_patches[] = { NULL - ,"RC1" - PERL_GIT_UNPUSHED_COMMITS /* do not remove this line */ + #ifdef PERL_GIT_UNCOMMITTED_CHANGES + ,"uncommitted-changes" + #endif Be sure to commit your change: -- Perl5 Master Repository
