summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-06-26 04:33:57 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-06-26 04:33:57 +0000
commit9ccb31f93bbfdb2e29acd0451c7419410a8499b8 (patch)
treea66d69fd5d15704aec3d3960d763d1b168271f8b /util.c
parent63bfd3dbc295505ea40d413cbda7eb621b2d79e1 (diff)
downloadperl-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.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/util.c b/util.c
index eb51151cb5..7a173eec63 100644
--- a/util.c
+++ b/util.c
@@ -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);
}