summaryrefslogtreecommitdiff
path: root/Porting/release_managers_guide.pod
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2015-02-01 00:04:28 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2015-02-01 00:04:28 +0000
commit0bf519881fb841b70dd052211eeee7f0425e5168 (patch)
treeaae1605fff525ef751689898bb9c5a8b060005fa /Porting/release_managers_guide.pod
parent67fbae813abe5e9ea6db14dedec317efbbed87b3 (diff)
downloadperl-0bf519881fb841b70dd052211eeee7f0425e5168.tar.gz
RMG - Update local_patches[] code snippet with current code
Diffstat (limited to 'Porting/release_managers_guide.pod')
-rw-r--r--Porting/release_managers_guide.pod8
1 files changed, 6 insertions, 2 deletions
diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod
index e7ee36a6ee..7405a96696 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: