summaryrefslogtreecommitdiffstats
path: root/NOTES-PERL.md
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2021-05-25 10:28:49 -0400
committerRichard Levitte <levitte@openssl.org>2021-05-28 11:14:46 +0200
commit3e3ad3c54855dd534437871a0c78858de5e3d246 (patch)
tree1d1264ae5d07caecefec35a26e3d751f27918390 /NOTES-PERL.md
parent32075a17249636b3e2986a0ac422b1803663ccaa (diff)
Fix issues found by md-nits
Fixes #15460 Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15461)
Diffstat (limited to 'NOTES-PERL.md')
-rw-r--r--NOTES-PERL.md36
1 files changed, 9 insertions, 27 deletions
diff --git a/NOTES-PERL.md b/NOTES-PERL.md
index a28f5b9033..b7fc83fc7d 100644
--- a/NOTES-PERL.md
+++ b/NOTES-PERL.md
@@ -8,7 +8,6 @@ Notes on Perl
- [Required Perl modules](#required-perl-modules)
- [Notes on installing a Perl module](#notes-on-installing-a-perl-module])
-
General Notes
-------------
@@ -70,35 +69,18 @@ Required Perl modules
We do our best to limit ourselves to core Perl modules to keep the
requirements down. There are just a few exceptions.
+ * Text::Template this is required *for building*
-## For Building
-
- * `Text::Template`
-
- This module is not part of the core Perl modules.
- As a matter of fact, the core Perl modules do not
- include any templating module to date.
- This module is absolutely needed,
- configuration depends on it.
-
-## For Testing
-
- * `Test::More`
-
- We require the minimum version to be 0.96, which
- appeared in Perl 5.13.4, because that version was
- the first to have all the features we're using.
- This module is required for testing only!
- If you don't plan on running the tests,
- you don't need to bother with this one.
-
-
+ To avoid unnecessary initial hurdles, we include a copy of this module
+ in the source. It will work as a fallback if the module isn't already
+ installed.
-To avoid unnecessary initial hurdles, we have bundled a copy of the
-following modules in our source. They will work as fallbacks if
-these modules aren't already installed on the system.
+ * `Test::More` this is required *for testing*
- Text::Template
+ We require the minimum version to be 0.96, which appeared in Perl 5.13.4,
+ because that version was the first to have all the features we're using.
+ This module is required for testing only! If you don't plan on running
+ the tests, you don't need to bother with this one.
Notes on installing a Perl module
---------------------------------