From: jiho-sf Date: Thu, 5 Mar 2009 22:10:29 +0000 (+0000) Subject: Allowed latex binaries to be detected by Inkscape on Mac OS X X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=dfbb81cfc5c3321cc08265d095aea07ef1a7f59c;p=inkscape.git Allowed latex binaries to be detected by Inkscape on Mac OS X The PATH is explicitly set in the startup script. Just added /usr/texbin which holds the executables for the LaTeX distribution on Mac OS X (well links to them rather, but it works) --- diff --git a/packaging/macosx/Resources/bin/inkscape b/packaging/macosx/Resources/bin/inkscape index e661c8754..0cb96c50f 100755 --- a/packaging/macosx/Resources/bin/inkscape +++ b/packaging/macosx/Resources/bin/inkscape @@ -20,7 +20,8 @@ TOP="`dirname \"$CWD\"`" # newer python as recommended by MacPython http://www.python.org/download/mac/ # Fink # MacPorts (former DarwinPorts) -export PATH="/opt/local/bin:/sw/bin/:/Library/Frameworks/Python.framework/Versions/Current/bin:/usr/local/bin:$CWD:$PATH" +# LaTeX distribution for Mac OS X +export PATH=/usr/texbin:/opt/local/bin:/sw/bin/:/Library/Frameworks/Python.framework/Versions/Current/bin:/usr/local/bin:$CWD:$PATH" # Setup PYTHONPATH to use python modules shipped with Inkscape ARCH=`arch`