diff options
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH index a70b53e4fe..4f78f57d74 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -552,7 +552,7 @@ depend: makedepend makedepend: makedepend.SH config.sh sh ./makedepend.SH -test-prep: miniperl perl preplibrary $(dynamic_ext) +test-prep: miniperl perl preplibrary utilities $(dynamic_ext) cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) test check: test-prep @@ -573,10 +573,13 @@ minitest: miniperl # Handy way to run perlbug -ok without having to install and run the # installed perlbug. We don't re-run the tests here - we trust the user. # Please *don't* use this unless all tests pass. -# If you want to report test failures, just use "perlbug -Ilib". +# If you want to report test failures, use "make nok" instead. ok: utilities $(LBLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' +nok: utilities + $(LBLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' + clist: $(c) echo $(c) | tr ' ' '\012' >.clist |