Index: lib/Mail/SpamAssassin/BayesStore.pm =================================================================== RCS file: /cvsroot/spamassassin/spamassassin/lib/Mail/SpamAssassin/BayesStore.pm,v retrieving revision 1.87 diff -u -r1.87 BayesStore.pm --- lib/Mail/SpamAssassin/BayesStore.pm 28 Aug 2003 21:39:30 -0000 1.87 +++ lib/Mail/SpamAssassin/BayesStore.pm 7 Sep 2003 06:00:04 -0000 @@ -1357,8 +1357,9 @@ $count = 0; # wrap in eval so it doesn't run in general use. This accesses db # modules directly. - eval ' - use ' . $dbm . '; + # Note: (bug 2390), the 'use' needs to be on the same line as the eval + # for RPM dependency checks to work properly. It's lame, but... + eval 'use ' . $dbm . '; tie %in, "' . $dbm . '", $filename, O_RDONLY, 0600; %{ $output } = %in; $count = scalar keys %{ $output };