summaryrefslogtreecommitdiff
path: root/Porting/Glossary
diff options
context:
space:
mode:
authorH.Merijn Brand <perl5@tux.freedom.nl>2020-08-22 16:12:58 +0200
committerH.Merijn Brand <perl5@tux.freedom.nl>2020-08-22 17:11:54 +0200
commit34050ace1c1445f04d7c1a95d3c2a4961eb1c547 (patch)
treed1280bafaf1ac28dacbd4e61dbb3de0494b713e9 /Porting/Glossary
parent2e8a5b7670884e12a43041522bfe7cc4d36a033c (diff)
downloadperl-34050ace1c1445f04d7c1a95d3c2a4961eb1c547.tar.gz
Merge Configure changes for z/OS and AIX
Thank you Karl!
Diffstat (limited to 'Porting/Glossary')
-rw-r--r--Porting/Glossary6
1 files changed, 5 insertions, 1 deletions
diff --git a/Porting/Glossary b/Porting/Glossary
index cf95dcde2e..f70343e2e4 100644
--- a/Porting/Glossary
+++ b/Porting/Glossary
@@ -276,6 +276,10 @@ comm (Loc.U):
full pathname (if any) of the comm program. After Configure runs,
the value is reset to a plain "comm" and is not useful.
+compiler_warning (compiler_warning.U):
+ This variable holds the command to check if the file specified as a
+ parameter contains a compiler warning
+
compress (Loc.U):
This variable is defined but not used by Configure.
The value is the empty string and is not useful.
@@ -5286,7 +5290,7 @@ startperl (startperl.U):
shell. Of course, that leading line must be followed by the classical
perl idiom:
eval 'exec perl -S $0 ${1+"$@"}'
- if 0; # ^ Run only under a shell
+ if $running_under_some_shell;
to guarantee perl startup should the shell execute the script. Note
that this magic incantation is not understood by csh.