[svn:parrot] r36441 - trunk/lib/Parrot/Pmc2c

barney at svn.parrot.org barney at svn.parrot.org
Sun Feb 8 12:41:36 UTC 2009


Author: barney
Date: Sun Feb  8 12:41:36 2009
New Revision: 36441
URL: https://trac.parrot.org/parrot/changeset/36441

Log:
[build] Search also in 'src/dympmc' for PMC dump files

Modified:
   trunk/lib/Parrot/Pmc2c/Pmc2cMain.pm

Modified: trunk/lib/Parrot/Pmc2c/Pmc2cMain.pm
==============================================================================
--- trunk/lib/Parrot/Pmc2c/Pmc2cMain.pm	Sun Feb  8 12:41:18 2009	(r36440)
+++ trunk/lib/Parrot/Pmc2c/Pmc2cMain.pm	Sun Feb  8 12:41:36 2009	(r36441)
@@ -89,13 +89,14 @@
         unless ( defined $allargsref->{args} and ref( $allargsref->{args} ) eq q{ARRAY} );
 
     unshift @{ $allargsref->{include} },
-        ( ".", "$allargsref->{bin}/../..", "$allargsref->{bin}/../../src/pmc/" );
+        '.', "$allargsref->{bin}/../..", "$allargsref->{bin}/../../src/pmc", "$allargsref->{bin}/../../src/dynpmc";
 
     foreach my $opt qw(nolines) {
         if ( !defined $allargsref->{opt}{$opt} ) {
             $allargsref->{opt}{$opt} = 0;
         }
     }
+
     return bless( $allargsref, $class );
 }
 


More information about the parrot-commits mailing list