diff options
author | Spider Boardman <spider@orb.nashua.nh.us> | 1999-01-27 07:27:15 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-02-02 12:36:16 +0000 |
commit | 39fa2da706e5b2820e5e3b8658ae46922b67eb5e (patch) | |
tree | 16b790fe1de43b9ca5bf66e231d0a7a02a6feb1d /Makefile.SH | |
parent | d674cd6de52ff38b62c0fdb62641dec6dc6eaac7 (diff) | |
download | perl-39fa2da706e5b2820e5e3b8658ae46922b67eb5e.tar.gz |
Apply change #2711 from maint-5.005:
make ok", "make okfile", and "make nok" were broken
with -Duseshrplib, because of a shared typo.
To: perlbug@perl.com
Subject: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
Message-Id: <199901271727.MAA233455@web.zk3.dec.com>
p4raw-link: @2711 on //depot/maint-5.005/perl: 25c9db45d05d4eea80132d08a1e350d0a3aba813
p4raw-id: //depot/cfgperl@2768
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.SH b/Makefile.SH index 967b9527e2..a5fa1a07a1 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -613,13 +613,13 @@ minitest: miniperl lib/re.pm # Please *don't* use this unless all tests pass. # If you want to report test failures, use "make nok" instead. ok: utilities - $(LBLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' + $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' okfile: utilities - $(LBLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok + $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok nok: utilities - $(LBLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' + $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' clist: $(c) echo $(c) | tr ' ' $(TRNL) >.clist |