Index: Makefile.PL =================================================================== RCS file: /cvsroot/spamassassin/spamassassin/Makefile.PL,v retrieving revision 1.91.2.5 diff -u -r1.91.2.5 Makefile.PL --- Makefile.PL 30 Mar 2003 01:42:12 -0000 1.91.2.5 +++ Makefile.PL 18 May 2003 20:37:23 -0000 @@ -198,9 +198,12 @@ $do = eval { require Razor2::Client::Agent }; } - if ($do) { + if (defined $do) { prompt("Run Razor v${v} tests (these may fail due to network problems)? (y/n)", 'n') =~ /^(.)/; $do = $1; + } + else { + $do = ''; } }