On OS X Yosemite, the standart texinfo version is quite old and does not suppprt certain features.
I now have installed, via homebrew, a newer version. As there is an already existing version, the binaries are not put into the PATH (keg only), which makes perfect sense.
Now, how can I tell make
, without modifying the make file that I want to use the binary located at /usr/local/opt/texinfo/bin/makeinfo
?
I could
- link makeinfo in the PATH
- execute make
- unlink texinfo
But I consider this un-elegant.
Is this my only option?