From d07039fb5c1735a8e23bb65aa3d5ba039d11a768 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 4 Nov 2025 21:59:34 +0000 Subject: [PATCH] Makefile.PL: fix typo for Mail::SpamAssassin MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This typo was causing the `gmake dsyn' target to ignore syntax checks and otherwise harmless for all normal use. Reported-by: Štěpán Němec Link: https://public-inbox.org/meta/20251103192939.279010-1-stepnem@smrk.net/ --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 531350d8f..d402b6e0f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -31,7 +31,7 @@ my @scripts = qw(scripts/ssoma-replay); # legacy my @syn = (@EXE_FILES, grep(m!^lib/.*\.pm$!, @manifest), @scripts); @syn = grep(!/DSKQXS\.pm/, @syn) if !eval { require IO::KQueue }; @syn = grep(!/Unsubscribe\.pm/, @syn) if !eval { require Crypt::CBC }; -@syn = grep(!/SaPlugin/, @syn) if !eval { require Mail::SpamAssasin }; +@syn = grep(!/SaPlugin/, @syn) if !eval { require Mail::SpamAssassin }; $v->{syn_files} = \@syn; $v->{my_syntax} = [map { "$_.syntax" } @syn]; my %native = ( -- 2.47.3