diff options
author | Vincent Pit <perl@profvince.com> | 2009-10-23 22:26:57 +0200 |
---|---|---|
committer | Vincent Pit <perl@profvince.com> | 2009-10-23 22:26:57 +0200 |
commit | 68814ba41330ad31d01867d22786a3d8197b605c (patch) | |
tree | 96997e32188a6f62eecc86ac73c856542271276d /pod/perlrepository.pod | |
parent | 3513da74e0f2c30b5ec85278b6e69f8751be9184 (diff) | |
download | perl-68814ba41330ad31d01867d22786a3d8197b605c.tar.gz |
"-x ./foo" isn't a shell command, but "[ -x ./foo ]" is
Diffstat (limited to 'pod/perlrepository.pod')
-rw-r--r-- | pod/perlrepository.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod index f1d439ebd7..2924b39039 100644 --- a/pod/perlrepository.pod +++ b/pod/perlrepository.pod @@ -562,7 +562,7 @@ testcase: perl -ni -we 'print unless /<(?:built-in|command)/' makefile x2p/makefile # if you just need miniperl, replace test_prep with miniperl make -j4 test_prep - -x ./perl || exit 125 + [ -x ./perl ] || exit 125 ./perl -Ilib ~/testcase.pl ret=$? git clean -dxf |