Subject: | /usr/bin/local/emacs should be /usr/local/bin/emacs |
The glob call in prompt_for_emacs() in Makefile.PL currently looks like this:
glob '/usr/bin{/local,}/emacs';
I doubt that there are regular systems where emacs is installed under /usr/bin/local. But there are many systems (actually all non-linux and non-windows systems) where it's in /usr/local/bin. So the glob should probably look like this:
glob '/usr{/local,}/bin/emacs';