cvs commit: ponie write_makefile.pl
[email protected] (Nicholas Clark) 15 Oct 2004 10:49:12 -0000
| Newsgroups | perl.ponie.changes |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 04/10/15 03:49:12
Modified: . write_makefile.pl
Log:
Only need to build null pvmg PMCs currently (saves time)
Revision Changes Path
1.2 +4 -2 ponie/write_makefile.pl
Index: write_makefile.pl
===================================================================
RCS file: /cvs/public/ponie/write_makefile.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -r1.1 -r1.2
--- write_makefile.pl 14 Oct 2004 11:44:38 -0000 1.1
+++ write_makefile.pl 15 Oct 2004 10:49:11 -0000 1.2
@@ -1,5 +1,5 @@
#!/usr/bin/perl -w
-# $Id: write_makefile.pl,v 1.1 2004/10/14 11:44:38 nicholas Exp $
+# $Id: write_makefile.pl,v 1.2 2004/10/15 10:49:11 nicholas Exp $
# A script to write (and therefore to re-write) the ponie specific makefiles.
@@ -10,7 +10,9 @@
my $top = $FindBin::Bin;
my @allPMCs
- = qw(null iv nv rv pv pviv pvnv pvmg pvbm pvgv pvlv pvav pvhv pvcv pvfm pvio);
+ = qw(null pvmg);
+ # Don't need the rest yet.
+ # iv nv rv pv pviv pvnv pvmg pvbm pvgv pvlv pvav pvhv pvcv pvfm pvio);
my @real = ();
my %fakes;
@fakes{@allPMCs} = ();