diff options
author | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-07-20 07:32:50 +0000 |
---|---|---|
committer | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-07-20 07:32:50 +0000 |
commit | 20db2dd2ad3cdd6e3720c1b5d7c4acc2a5de4f24 (patch) | |
tree | f01bd09190839e51a7b1b55c1ea6d33a6529b641 | |
parent | 569de18f726b1e17ea7a53eb599c6367e4dd3c10 (diff) |
remove viewer settings, asy uses file associations now
git-svn-id: svn://tug.org/texlive/trunk@14340 c570f23f-e606-0410-a88d-b1316a301751
-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" %* |