diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/lscript/lscript_compile/bison.bat | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/lscript/lscript_compile/bison.bat')
-rw-r--r-- | linden/indra/lscript/lscript_compile/bison.bat | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/linden/indra/lscript/lscript_compile/bison.bat b/linden/indra/lscript/lscript_compile/bison.bat new file mode 100644 index 0000000..54cf023 --- /dev/null +++ b/linden/indra/lscript/lscript_compile/bison.bat | |||
@@ -0,0 +1,11 @@ | |||
1 | @REM Run bison under Windows. This script is needed so that bison can | ||
2 | @REM find m4, even if neither program is present in PATH. | ||
3 | |||
4 | @set bison=%1 | ||
5 | set M4PATH=%2 | ||
6 | set M4= | ||
7 | @set output=%3 | ||
8 | @set input=%4 | ||
9 | |||
10 | set PATH=%M4PATH%;%PATH% | ||
11 | %bison% -d -o %output% %input% | ||