summaryrefslogtreecommitdiff
path: root/pod/perlrepository.pod
diff options
context:
space:
mode:
authorVincent Pit <perl@profvince.com>2009-10-23 22:26:57 +0200
committerVincent Pit <perl@profvince.com>2009-10-23 22:26:57 +0200
commit68814ba41330ad31d01867d22786a3d8197b605c (patch)
tree96997e32188a6f62eecc86ac73c856542271276d /pod/perlrepository.pod
parent3513da74e0f2c30b5ec85278b6e69f8751be9184 (diff)
downloadperl-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.pod2
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