Hi,

with recent update to quirks there was a small bug introduced.
While updating packages I get:

Can't load quirk: Can't modify constant item in scalar assignment at 
/usr/local/libdata/perl5/site_perl/OpenBSD/Quirks.pm line 381, near "0,"
Compilation failed in require at /usr/libdata/perl5/OpenBSD/AddDelete.pm line 
285.

   383          'p5-SVN-Mirror' => 3,
   384          'chipmunk' = 0,
   385  };

Fix attached.

Regards,
Markus

Index: files/Quirks.pm
===================================================================
RCS file: /cvs/ports/devel/quirks/files/Quirks.pm,v
retrieving revision 1.135
diff -u -p -r1.135 Quirks.pm
--- files/Quirks.pm     22 Mar 2014 13:55:34 -0000      1.135
+++ files/Quirks.pm     22 Mar 2014 14:18:14 -0000
@@ -381,7 +381,7 @@ my $obsolete_reason = {
        'svk' => 3,
        'p5-SVN-Dump' => 3,
        'p5-SVN-Mirror' => 3,
-       'chipmunk' = 0,
+       'chipmunk' => 0,
 };
 
 # ->is_base_system($handle, $state):

Reply via email to