diff options
author | Larry Wall <lwall@netlabs.com> | 1992-06-22 23:34:36 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1992-06-22 23:34:36 +0000 |
commit | 514dae0dba791ec01681adb3b3946a7646e146b3 (patch) | |
tree | 95280cdcdd307611323bb1b859147eeccfd8c23d /installperl | |
parent | faf8582f0c418b57fd71e105da84edbb3177fa0c (diff) | |
download | perl-514dae0dba791ec01681adb3b3946a7646e146b3.tar.gz |
perl 4.0 patch 35: (combined patch)
Subject: bad interaction between backslash and hyphen in tr///
Among other things, tr/\040-\126/ / was not doing a character range,
due to a earlier botched fix to make \- work right.
Subject: Configure test for presence of nroff was wrong
If Loc doesn't find nroff, it sets $nroff to 'nroff'. The man
page test was tesing against the null string.
Subject: installperl error message printed file mode in decimal, not octal
A real, honest-to-goodnes nit.
Subject: fixed up some filenames in MANIFEST
Erroneously contained "pstruct", omitted hints/isc_3_2_3.sh.
Diffstat (limited to 'installperl')
-rw-r--r-- | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index b5ef496f91..4f3fc0004d 100644 --- a/installperl +++ b/installperl @@ -198,7 +198,7 @@ sub chmod { local($mode,$name) = @_; printf STDERR " chmod %o %s\n", $mode, $name; - chmod($mode,$name) || warn "Couldn't chmod $mode $name: $!\n" + chmod($mode,$name) || warn sprintf("Couldn't chmod %o %s: $!\n",$mode,$name) unless $nonono; } |