diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-11-25 14:49:51 +0100 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-11-25 14:49:51 +0100 |
commit | e25498c0506d39145725647b3d7397bccd2e207d (patch) | |
tree | ed85ff9da88decf7361536a2a97280f0891e2c30 /packages/antlr/files | |
parent | 6b6df778d84f2c2fb0f271b13d81502edfaf3afb (diff) |
Replace non-working antlr recipe with working ones from Jalimo repo.
antlr 2.7.7: New recipe.
antlr-native 2.7.7: New recipe.
Diffstat (limited to 'packages/antlr/files')
-rwxr-xr-x | packages/antlr/files/runantlr | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/antlr/files/runantlr b/packages/antlr/files/runantlr new file mode 100755 index 0000000000..b924bf477d --- /dev/null +++ b/packages/antlr/files/runantlr @@ -0,0 +1,11 @@ +#!/bin/sh +echo Running 'java antlr.Tool $*' with @JAR_FILE@ appended to the CLASSPATH variable + +export CLASSPATH +CLASSPATH=$CLASSPATH:@JAR_FILE@ + +if [ ! $JAVA ];then + JAVA=java +fi + +$JAVA antlr.Tool $* |