summaryrefslogtreecommitdiff
path: root/Porting/release_managers_guide.pod
diff options
context:
space:
mode:
authorKaren Etheridge <ether@cpan.org>2019-06-21 10:12:32 -0700
committerKaren Etheridge <ether@cpan.org>2019-06-21 10:12:33 -0700
commit74c5eae8b295e7c9badf10b3d6dcfb84998781fa (patch)
tree65f17b31e700a653ea6e4de7f1d403969662ce87 /Porting/release_managers_guide.pod
parent9965e4913ae5c95c055633458dda05e8244efd1a (diff)
downloadperl-74c5eae8b295e7c9badf10b3d6dcfb84998781fa.tar.gz
add explicit command to do a clean build
Diffstat (limited to 'Porting/release_managers_guide.pod')
-rw-r--r--Porting/release_managers_guide.pod9
1 files changed, 8 insertions, 1 deletions
diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod
index 8dda7fe053..0e0c962841 100644
--- a/Porting/release_managers_guide.pod
+++ b/Porting/release_managers_guide.pod
@@ -1345,7 +1345,14 @@ in theory, only contain bug fixes but never regressions.))
=head3 clean build and test
-Run a clean build and test to make sure nothing obvious is broken.
+Run a clean build and test to make sure nothing obvious is broken. This is
+very important, as commands run after this point must be run using the perl
+executable built with the bumped version number.
+
+ $ git clean -xdf
+ $ ./Configure -des -Dusedevel
+ $ make
+ $ make test
In particular, F<Porting/perldelta_template.pod> is intentionally exempted
from podchecker tests, to avoid false positives about placeholder text.