develooper Front page | perl.ponie.changes | Postings from December 2005

[svn:ponie] r367 - trunk

From:
nicholas
Date:
December 6, 2005 11:24
Subject:
[svn:ponie] r367 - trunk
Message ID:
20051206192429.8340.qmail@x1.develooper.com
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
 



nntp.perl.org: Perl Programming lists via nntp and http.
Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About