summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiHO <jiho-sf@users.sourceforge.net>2009-03-05 22:10:29 +0000
committerjiho-sf <jiho-sf@users.sourceforge.net>2009-03-05 22:10:29 +0000
commit692b8b9efe4905dde1d150969025e9698374f69a (patch)
treefeaf6dfa44c2296c3e6e89d9e987b01e8045eaed
parentFix distribute-remove-overlap (should be distribute-remove-overlaps) in (diff)
downloadinkscape-692b8b9efe4905dde1d150969025e9698374f69a.tar.gz
inkscape-692b8b9efe4905dde1d150969025e9698374f69a.zip
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) (bzr r7427)
-rwxr-xr-xpackaging/macosx/Resources/bin/inkscape3
1 files changed, 2 insertions, 1 deletions
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`