diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-26 04:33:57 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-26 04:33:57 +0000 |
commit | 9ccb31f93bbfdb2e29acd0451c7419410a8499b8 (patch) | |
tree | a66d69fd5d15704aec3d3960d763d1b168271f8b /util.c | |
parent | 63bfd3dbc295505ea40d413cbda7eb621b2d79e1 (diff) | |
download | perl-9ccb31f93bbfdb2e29acd0451c7419410a8499b8.tar.gz |
make find_script() return saved string, reenable missing diagnostics
p4raw-id: //depot/perl@1219
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -2562,18 +2562,21 @@ find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags) if (!xfound && !seen_dot && !xfailed && (PerlLIO_stat(scriptname,&statbuf) < 0)) #endif seen_dot = 1; /* Disable message. */ - if (!xfound) - scriptname = NULL; -/* croak("Can't %s %s%s%s", - (xfailed ? "execute" : "find"), - (xfailed ? xfailed : scriptname), - (xfailed ? "" : " on PATH"), - (xfailed || seen_dot) ? "" : ", '.' not in PATH"); */ + if (!xfound) { + if (flags & 1) { /* do or die? */ + croak("Can't %s %s%s%s", + (xfailed ? "execute" : "find"), + (xfailed ? xfailed : scriptname), + (xfailed ? "" : " on PATH"), + (xfailed || seen_dot) ? "" : ", '.' not in PATH"); + } + scriptname = Nullch; + } if (xfailed) Safefree(xfailed); scriptname = xfound; } - return scriptname; + return (scriptname ? savepv(scriptname) : Nullch); } |