summaryrefslogtreecommitdiff
path: root/libs/math/doc/graphs/generate.sh
diff options
context:
space:
mode:
Diffstat (limited to 'libs/math/doc/graphs/generate.sh')
-rwxr-xr-xlibs/math/doc/graphs/generate.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/math/doc/graphs/generate.sh b/libs/math/doc/graphs/generate.sh
index bff99777e..d9659141f 100755
--- a/libs/math/doc/graphs/generate.sh
+++ b/libs/math/doc/graphs/generate.sh
@@ -8,15 +8,15 @@
# Paths to tools come first, change these to match your system:
#
math2svg='m:\download\open\SVGMath-0.3.1\math2svg.py'
-python=/cygdrive/c/Python26/python.exe
-inkscape=/cygdrive/c/progra~1/Inkscape/inkscape
+python='/cygdrive/c/program files/Python27/python.exe'
+inkscape='/cygdrive/c/Program Files (x86)/Inkscape/inkscape.exe'
# Image DPI:
dpi=96
for svgfile in $*; do
pngfile=$(basename $svgfile .svg).png
echo Generating $pngfile
- $inkscape -d $dpi -e $(cygpath -a -w $pngfile) $(cygpath -a -w $svgfile)
+ "$inkscape" -d $dpi -e $(cygpath -a -w $pngfile) $(cygpath -a -w $svgfile)
done