diff options
author | Nyx Linden <nyx@lindenlab.com> | 2012-09-24 17:19:16 +0000 |
---|---|---|
committer | Nyx Linden <nyx@lindenlab.com> | 2012-09-24 17:19:16 +0000 |
commit | 33099f4b7b55c166ba77a3e862573cd68ec4acef (patch) | |
tree | 07626f4aa5af7a99c7c34123e25687f09715ef00 /indra/lscript/lscript_compile/bison.bat | |
parent | 93769c43e209b206ed06c1a812900e5e51473a74 (diff) | |
parent | d3924200b6b8817461c0f10f87a643005466d4af (diff) |
merge
Diffstat (limited to 'indra/lscript/lscript_compile/bison.bat')
-rw-r--r-- | indra/lscript/lscript_compile/bison.bat | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/lscript/lscript_compile/bison.bat b/indra/lscript/lscript_compile/bison.bat index 0baff4e5ef..d40997225e 100644 --- a/indra/lscript/lscript_compile/bison.bat +++ b/indra/lscript/lscript_compile/bison.bat @@ -2,10 +2,11 @@ @REM find m4, even if neither program is present in PATH.
@set bison=%1
-set M4PATH=%2
+shift
+set M4PATH=%1
+shift
set M4=
-@set output=%3
-@set input=%4
set PATH=%M4PATH%;%PATH%
-%bison% -d -o %output% %input%
+@REM %* does not work with shift...
+%bison% %1 %2 %3 %4 %5 %6 %7 %8 %9
|