> >make: *** No rule to make target `Parrot/Jit/i686Generic.pm', needed by >`Parrot/Jit.pm'. Stop. >[msmith@linux parrot]$
Had to patch Configure.pl as follows to get a build on my box. -Melvin Index: Configure.pl =================================================================== RCS file: /cvs/public/parrot/Configure.pl,v retrieving revision 1.82 diff -u -r1.82 Configure.pl --- Configure.pl 20 Jan 2002 20:52:20 -0000 1.82 +++ Configure.pl 21 Jan 2002 02:23:31 -0000 @@ -149,6 +149,7 @@ $jitarchname = "$cpuarch-$osname"; $jitarchname =~ s/i[456]86/i386/i; $jitarchname =~ s/-(net|free|open)bsd$/-bsd/i; +$cpuarch =~ s/i[456]86/i386/i; if (-e "Parrot/Jit/$jitarchname.pm") { $jitcapable = 1;