[svn:ponie] r367 - trunk

[email protected] 6 Dec 2005 19:24:29 -0000
Newsgroups perl.ponie.changes
Message-ID <[email protected]>
Author: nicholas
Date: Tue Dec  6 11:24:29 2005
New Revision: 367

Modified:
   trunk/write_makefile.pl
Log:
The path to the parrot build tools has changed.
/bin/true isn't portable - just use true.


Modified: trunk/write_makefile.pl
==============================================================================
--- trunk/write_makefile.pl	(original)
+++ trunk/write_makefile.pl	Tue Dec  6 11:24:29 2005
@@ -53,10 +53,10 @@ libponie$Config{_a}: $allobjs $configobj
 	$Config{ranlib} \$\@
 
 test:	libponie$Config{_a}
-	/bin/true # There are no tests in this directory.
+	true # There are no tests in this directory.
 
 perl5pmcs.c: $alldumps
-	\$(PERL) $parrotdir/build_tools/pmc2c.pl --library perl5pmcs --c $allpmcs
+	\$(PERL) $parrotdir/tools/build/pmc2c.pl --library perl5pmcs --c $allpmcs
 
 perl5pmcs$Config{_o}: perl5pmcs.c
 perl5pmcs.h: perl5pmcs.c
@@ -72,10 +72,10 @@ foreach (@allPMCs) {
   my $o = lc($_) . $Config{_o};
   print <<"EOSNIP";
 $dump: $pmc
-	\$(PERL) $parrotdir/build_tools/pmc2c.pl --include=../src/pmc --dump $pmc
+	\$(PERL) $parrotdir/tools/build/pmc2c.pl --include=../src/pmc --dump $pmc
 
 $c $h: $dump
-	\$(PERL) $parrotdir/build_tools/pmc2c.pl --c $pmc
+	\$(PERL) $parrotdir/tools/build/pmc2c.pl --c $pmc
 
 $o: $c