diff options
author | Nicholas Clark <nick@ccl4.org> | 2000-10-30 17:38:45 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-31 14:05:07 +0000 |
commit | 890b8eb066f30572e2b9f1c1d8e7edb06f67ef40 (patch) | |
tree | ecf7c4f0a4cf6d99c930dda276698387f4f80c97 /Makefile.SH | |
parent | 553c0e07cf3a4f9abe248feb960ff8fdf7a396bb (diff) | |
download | perl-890b8eb066f30572e2b9f1c1d8e7edb06f67ef40.tar.gz |
Add a perlbug flag, -A, to avoid acknowledgement messages.
Subject: PATCH (Re: [ID 20001030.008] OK: perl v5.7.0 +DEVEL7445 on i586-linux 2.2.16 (UNINSTALLED))
Message-ID: <20001030173845.O60355@plum.flirble.org>
p4raw-id: //depot/perl@7493
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.SH b/Makefile.SH index 14170b39a8..ab9606571f 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -847,12 +847,24 @@ ok: utilities okfile: utilities $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok +oknack: utilities + $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A + +okfilenack: utilities + $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A + nok: utilities $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' nokfile: utilities $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok +noknack: utilities + $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A + +nokfilenack: utilities + $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A + clist: $(c) echo $(c) | tr ' ' $(TRNL) >.clist |