diff options
-rwxr-xr-x | Master/bin/win32/asy.bat | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Master/bin/win32/asy.bat b/Master/bin/win32/asy.bat index 88765897e13..b61fa174b6c 100755 --- a/Master/bin/win32/asy.bat +++ b/Master/bin/win32/asy.bat @@ -8,16 +8,13 @@ setlocal enableextensions rem Get TL installation root (it should be two levels up) rem Use short path, because of problems with spaces and calling batch files for %%I in ("%~dp0\..\..") do (set TLROOT=%%~fI) -rem Add psv, gs and bin dir to PATH -path %TLROOT%\bin\win32;%TLROOT%\tlpkg\tlgs\bin;%TLROOT%\tlpkg\tlpsv;%PATH% +rem Add gs and bin dir to PATH +path %TLROOT%\bin\win32;%TLROOT%\tlpkg\tlgs\bin;%PATH% rem GS environment set GS_DLL=%tlroot%\tlpkg\tlgs\bin\gsdll32.dll set GS_LIB=%TLROOT%\tlpkg\tlgs\lib;%TLROOT%\tlpkg\tlgs\fonts +set ASYMPTOTE_GS=gswin32c.exe rem Suppress cygwin warning about DOS paths set CYGWIN=nodosfilewarning -rem Set asymptote options -set ASYMPTOTE_GS=gswin32c.exe -set ASYMPTOTE_PSVIEWER=psv.exe -set ASYMPTOTE_PDFVIEWER=psv.exe rem Call asy.exe "%TLROOT%\tlpkg\asymptote\asy.exe" %* |