cvs commit: ponie write_makefile.pl
[email protected] (Nicholas Clark) 12 Nov 2004 12:08:59 -0000
| Newsgroups | perl.ponie.changes |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 04/11/12 04:08:59
Modified: . write_makefile.pl
Log:
Remove the --no-lines as #line directives now work and are useful
Revision Changes Path
1.3 +4 -4 ponie/write_makefile.pl
Index: write_makefile.pl
===================================================================
RCS file: /cvs/public/ponie/write_makefile.pl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- write_makefile.pl 15 Oct 2004 10:49:11 -0000 1.2
+++ write_makefile.pl 12 Nov 2004 12:08:59 -0000 1.3
@@ -1,5 +1,5 @@
#!/usr/bin/perl -w
-# $Id: write_makefile.pl,v 1.2 2004/10/15 10:49:11 nicholas Exp $
+# $Id: write_makefile.pl,v 1.3 2004/11/12 12:08:59 nicholas Exp $
# A script to write (and therefore to re-write) the ponie specific makefiles.
@@ -43,7 +43,7 @@
$Config{ranlib} \$\@
perl5pmcs.c: $alldumps;
- \$(PERL) $parrotdir/classes/pmc2c2.pl --no-lines --library perl5pmcs --c $allpmcs
+ \$(PERL) $parrotdir/classes/pmc2c2.pl --library perl5pmcs --c $allpmcs
perl5pmcs$Config{_o}: perl5pmcs.c
perl5pmcs.h: perl5pmcs.c
@@ -61,10 +61,10 @@
print <<"EOSNIP";
perl5$_.dump: perl5$_.pmc
- \$(PERL) $parrotdir/classes/pmc2c2.pl --no-lines --include=../src/pmc --dump perl5$_.pmc
+ \$(PERL) $parrotdir/classes/pmc2c2.pl --include=../src/pmc --dump perl5$_.pmc
perl5$_.c: $alldumps
- \$(PERL) $parrotdir/classes/pmc2c2.pl --no-lines --c perl5$_.pmc
+ \$(PERL) $parrotdir/classes/pmc2c2.pl --c perl5$_.pmc
perl5$_$Config{_o}: perl5$_.c
EOSNIP