diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-01-12 16:45:58 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-01-12 16:45:58 +0000 |
commit | af4015f1afe3f0c72ccab4ba0762e0b0eb7b7342 (patch) | |
tree | f1e44aa8b5fe04e2e848a349114750a2fc5b0f4d | |
parent | 1ec755da0d4d3efe15779aac026b2b5752e3e4db (diff) | |
download | perl-af4015f1afe3f0c72ccab4ba0762e0b0eb7b7342.tar.gz |
Correct the over-zealous addition of $(RUN) into test -f ./miniperl$(EXE_EXT)
(in change cef6ea9dde586d23f429802e75d22875450d6b68)
-rw-r--r-- | Makefile.SH | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH index 38b1c253b4..9b7051ecd9 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -1236,7 +1236,7 @@ _cleaner1: -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib ext/util/make_ext.pl $(CLEAN) $$x MAKE=$(MAKE) ; \ done - -@test ! -f $(RUN) ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib mkppport --clean + -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib mkppport --clean # Some systems do not support "?", so keep these files separate. _cleaner2: @@ -1344,7 +1344,7 @@ unpack_files: $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -u -m cleanup_unpacked_files: - -@test ! -f $(RUN) ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -c + -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -c # The second branch is for testing without a tty or controlling terminal, # see t/op/stat.t |