develooper Front page | perl.cvs.parrot | Postings from January 2009

[svn:parrot] r35524 - in trunk: . languages/eclectus languages/eclectus/config/makefiles languages/pipp

From:
bernhard
Date:
January 14, 2009 04:04
Subject:
[svn:parrot] r35524 - in trunk: . languages/eclectus languages/eclectus/config/makefiles languages/pipp
Message ID:
20090114120412.5A9D3CB9AE@x12.develooper.com
Author: bernhard
Date: Wed Jan 14 04:04:10 2009
New Revision: 35524

Added:
   trunk/languages/eclectus/Configure.pl   (contents, props changed)
      - copied, changed from r35490, /trunk/languages/pipp/Configure.pl
Modified:
   trunk/MANIFEST
   trunk/languages/eclectus/config/makefiles/root.in
   trunk/languages/pipp/Configure.pl

Log:
[eclectus] Add a Configure.pl. Add variable $hll.


Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST	(original)
+++ trunk/MANIFEST	Wed Jan 14 04:04:10 2009
@@ -1,7 +1,7 @@
 # ex: set ro:
 # $Id$
 #
-# generated by tools/dev/mk_manifest_and_skip.pl Wed Jan 14 10:07:11 2009 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Wed Jan 14 11:59:57 2009 UT
 #
 # See tools/dev/install_files.pl for documentation on the
 # format of this file.
@@ -1464,6 +1464,7 @@
 languages/dotnet/tools/analysis_latex.pl                    [dotnet]
 languages/dotnet/tools/benchmark.pl                         [dotnet]
 languages/dotnet/tools/fail_analysis.pl                     [dotnet]
+languages/eclectus/Configure.pl                             [eclectus]
 languages/eclectus/MAINTAINER                               [eclectus]
 languages/eclectus/README                                   [eclectus]
 languages/eclectus/chicken/prelude.scm                      [eclectus]

Copied: trunk/languages/eclectus/Configure.pl (from r35490, /trunk/languages/pipp/Configure.pl)
==============================================================================
--- /trunk/languages/pipp/Configure.pl	(original)
+++ trunk/languages/eclectus/Configure.pl	Wed Jan 14 04:04:10 2009
@@ -6,10 +6,10 @@
 use 5.008;
 
 my $build_dir = '../..';
-my $cmd = qq{$^X -Ilib tools/dev/reconfigure.pl --step=gen::languages --languages=pipp};
+my $hll       = 'eclectus';
+my $cmd       = qq{$^X -Ilib tools/dev/reconfigure.pl --step=gen::languages --languages=$hll};
 
 print "Running '$cmd' in $build_dir\n";
-
 chdir $build_dir;
 `$cmd`
 

Modified: trunk/languages/eclectus/config/makefiles/root.in
==============================================================================
--- trunk/languages/eclectus/config/makefiles/root.in	(original)
+++ trunk/languages/eclectus/config/makefiles/root.in	Wed Jan 14 04:04:10 2009
@@ -61,7 +61,7 @@
 
 # regenerate the Makefile
 Makefile: config/makefiles/root.in
-	cd $(BUILD_DIR) && $(RECONFIGURE) --step=gen::languages --languages=eclectus
+	$(PERL) Configure.pl
 
 # Compilation:
 build: $(ECLECTUS_GROUP) driver_nqp.pbc

Modified: trunk/languages/pipp/Configure.pl
==============================================================================
--- trunk/languages/pipp/Configure.pl	(original)
+++ trunk/languages/pipp/Configure.pl	Wed Jan 14 04:04:10 2009
@@ -6,10 +6,10 @@
 use 5.008;
 
 my $build_dir = '../..';
-my $cmd = qq{$^X -Ilib tools/dev/reconfigure.pl --step=gen::languages --languages=pipp};
+my $hll       = 'pipp';
+my $cmd       = qq{$^X -Ilib tools/dev/reconfigure.pl --step=gen::languages --languages=$hll};
 
 print "Running '$cmd' in $build_dir\n";
-
 chdir $build_dir;
 `$cmd`
 



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