it could be that non OSX platforms also get named with .py. a simple way to check could be to look at the output of `which rst2latex.py`
yep, that is good, i've used it for
MLTools, can you take a look at it to see if could be made more "POSIX" than now, if you want?
EDIT:
in makefile there is already a check for osx but I can't figure how to add:
ifeq ($(UNAME), Darwin)
# Variable declaration for Mac OS X
UMOUNT=hdiutil unmount
CF_CARD=/Volumes/EOS_DIGITAL
else
# Default settings for remaining operating systems
CF_CARD=/media/EOS_DIGITAL
UMOUNT=umount
endif
I can't use this code for the check:
if [ ! $(which rst2latex) ] && [ $(which rst2latex.py) ]; then
alias rst2latex=rst2latex.py
fi
nor this inserted in the already present check:
alias rst2latex=rst2latex.py
ARM also maintain a gcc toolchain, I use the same one for ARM CM4 development. I didn't realise I could use it to compile ML, but it works. Binary is a bit smaller than the one produced by the code sourcery toolchain (~365kb vs 328kb)
from what I can understand no osx, true?