[svn:parrot] r36119 - in trunk: . languages/pipp

[email protected] Wed, 28 Jan 2009 12:37:23 -0800 (PST)
Newsgroups perl.cvs.parrot
Message-ID <[email protected]>
Author: bernhard
Date: Wed Jan 28 12:37:22 2009
New Revision: 36119

Modified:
   trunk/MANIFEST
   trunk/MANIFEST.SKIP
   trunk/languages/pipp/pipp.pir

Log:
[Pipp] Make pipp.pir compile again, after adding PHC support

Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST	(original)
+++ trunk/MANIFEST	Wed Jan 28 12:37:22 2009
@@ -1,5 +1,5 @@
 # ex: set ro:
-# $Id$
+# $Id: MANIFEST 36113 2009-01-28 20:10:21Z bernhard $
 #
 # generated by tools/dev/mk_manifest_and_skip.pl Wed Jan 28 20:09:00 2009 UT
 #

Modified: trunk/MANIFEST.SKIP
==============================================================================
--- trunk/MANIFEST.SKIP	(original)
+++ trunk/MANIFEST.SKIP	Wed Jan 28 12:37:22 2009
@@ -1,5 +1,5 @@
 # ex: set ro:
-# $Id$
+# $Id: MANIFEST.SKIP 36083 2009-01-28 08:13:34Z fperrad $
 # generated by tools/dev/mk_manifest_and_skip.pl Wed Jan 28 08:02:55 2009 UT
 #
 # This file should contain a transcript of the svn:ignore properties

Modified: trunk/languages/pipp/pipp.pir
==============================================================================
--- trunk/languages/pipp/pipp.pir	(original)
+++ trunk/languages/pipp/pipp.pir	Wed Jan 28 12:37:22 2009
@@ -181,10 +181,6 @@
     goto GOT_VARIANT
 
 GOT_VARIANT:
-    if variant == 'antlr3'    goto VARIANT_ANTLR3
-    if variant == 'ANTLR3'    goto VARIANT_ANTLR3
-    if variant == 'antlr'     goto VARIANT_ANTLR3
-    if variant == 'ANTLR'     goto VARIANT_ANTLR3
     if variant == 'pct'       goto VARIANT_PCT
     if variant == 'PCT'       goto VARIANT_PCT
     if variant == 'phc'       goto VARIANT_PHC
@@ -215,8 +211,8 @@
     # work with the XML generated by PHC, the PHP Compiler
     err_msg = 'Creating XML-AST with phc failed'
     cmd = 'phc --dump-ast-xml=ast '
-    concat cmd, source_fn
-    concat cmd, '> pipp_phc_ast.xml'
+    cmd .= php_source_fn
+    cmd .= '> pipp_phc_ast.xml'
     ret = spawnw cmd
     if ret goto ERROR