diff options
author | Steve Hay <SteveHay@planit.com> | 2003-03-20 11:55:01 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-04-02 20:41:46 +0000 |
commit | 5b3c99c010f99810b63aaa04e000fb2c8547942a (patch) | |
tree | 0afe748a27734311cd29c94a19f45787799b9896 /installhtml | |
parent | 5fc52bc68f8bca292cb1880662c8edef5b0c54a8 (diff) | |
download | perl-5b3c99c010f99810b63aaa04e000fb2c8547942a.tar.gz |
Fix missing functions when splitting perlfunc
Message-ID: <3E79AC15.80307@uk.radan.com>
p4raw-id: //depot/perl@19140
Diffstat (limited to 'installhtml')
-rwxr-xr-x | installhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installhtml b/installhtml index 9884f27d3f..919346a86b 100755 --- a/installhtml +++ b/installhtml @@ -412,7 +412,7 @@ sub split_on_item { die "$0: error changing to directory $podroot/$dirname: $!\n"; die "$splitter not found. Use '-splitpod dir' option.\n" unless -f $splitter; - system("perl", $splitter, "../$filename") && + system($^X, $splitter, "../$filename") && warn "$0: error running '$splitter ../$filename'" ." from $podroot/$dirname"; } |