diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2010-02-09 07:35:19 -0800 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-02-09 07:35:19 -0800 |
commit | 41ca041da450dea2240565317825c159e0b28ee4 (patch) | |
tree | 86350e1d6052d47725543f4081af36a5a3b938e2 /Configure | |
parent | d27f8d4b40c1a3b65c4120a5d982a71f0e1f8645 (diff) | |
parent | 0972ecdf6decc0f53d00772c18026d31b7aaf416 (diff) | |
download | perl-41ca041da450dea2240565317825c159e0b28ee4.tar.gz |
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
* 'blead' of ssh://perl5.git.perl.org/gitroot/perl:
Warn people not to set PERL_CORE in XS
In embed.fnc the 'E' flag should imply 'X', but doesn't.
revise perldelta note on strict and lax version rules
expand flag descriptions in in embed.fnc
alphabetically sort flag descriptions in embed.fnc
[perl #72156]: substitute `less -R' for `less' for groff's new usage
INSTALL doc fix: calling the test suite using -MTestInit changed since it moved to top level (which happened in commit 30b6e59101b252c20a6b50b95203d1e2c6016604)
changed "an UTF..." to "a UTF..." in all Pods
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -2438,6 +2438,15 @@ for file in $trylist; do ;; esac done +case "$less" in +'') ;; +*) if $less -R </dev/null >/dev/null; then + echo "Substituting less -R for less." + less="$less -R" + _less=$less + fi + ;; +esac case "$egrep" in egrep) echo "Substituting grep for egrep." |