diff options
author | Gurusamy Sarathy <gsar@engin.umich.edu> | 1997-07-24 02:52:28 +1200 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-08-07 00:00:00 +1200 |
commit | 2a92aaa05aa1acbf01092228d30e9b1d7b2a3f61 (patch) | |
tree | f0d1a9aac7dec3b45add5f5b1a0bc394072f504c /pod/perldiag.pod | |
parent | e506e7760ce134b6f8488b1be20fa43aff226564 (diff) | |
download | perl-2a92aaa05aa1acbf01092228d30e9b1d7b2a3f61.tar.gz |
-S flag fixes for DOSISH platforms
This patch supercedes the one posted here by Ilya
(Message-Id: <199707191651.MAA04897@monk.mps.ohio-state.edu>).
There are no changes for Unix platforms over Ilya's
version. On DOSISH platforms, the initial check in
the current directory (or the actual path to the script,
if supplied) includes searching for valid extensions.
The fact that -S does not do a PATH search if the supplied
filename contains directory separators (on all platforms) is
documented. This behavior is similar to Unix and DOS shells.
Note -S *does* have an effect on DOSISH platforms even if no
PATH search happens: valid extensions will be checked for if
the file name is not found.
p5p-msgid: 199707250043.UAA02385@aatma.engin.umich.edu
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index ab40fd122d..409aa21ec0 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -549,8 +549,19 @@ mention "perl" on the #! line somewhere. =item Can't execute %s +(F) You used the B<-S> switch, but the copies of the script to execute found +in the PATH did not have correct permissions. + +=item Can't find %s on PATH, '.' not in PATH + +(F) You used the B<-S> switch, but the script to execute could not be found +in the PATH, or at least not with the correct permissions. The script +exists in the current directory, but PATH prohibits running it. + +=item Can't find %s on PATH + (F) You used the B<-S> switch, but the script to execute could not be found -in the PATH, or at least not with the correct permissions. +in the PATH. =item Can't find label %s |