summaryrefslogtreecommitdiff
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:05:21 +0000
commit3ced16b605e634047b5667d50cb13ac04bbf83d0 (patch)
treed44c85c7db20ea1ef65c7944017f9c6052e0561f
parentea741f63b2336a912db854f96215f36d9bd72070 (diff)
downloadperl-3ced16b605e634047b5667d50cb13ac04bbf83d0.tar.gz
RMG - Update local_patches[] code snippet with current code
(cherry picked from commit 0bf519881fb841b70dd052211eeee7f0425e5168)
-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 452558cf44..52c9515e83 100644
--- a/Porting/release_managers_guide.pod
+++ b/Porting/release_managers_guide.pod
@@ -793,7 +793,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:
@@ -1067,7 +1069,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: