Build failes with non-english Word
Status: Alpha
Brought to you by:
ununnilium
Apparently Word installs its script-menu in a localized path. I have a swedish version of Office 2008 and then the script menu is in "~/Documents/Microsoft användardata/Word Script Menu Items".
I made a quick fix to the Makefile in the bibfuse folder to handle this. I'm definitely no guru on Makefiles and I know this may fail if the installation has been tried before, leaving the "Microsoft User Data" folder in place but it's a start at least...
The change is:
WORD_SCRIPT_DIR = ~/Documents/Microsoft\ User\ Data/Word\ Script\ Menu\ Items
should be
WORD_SCRIPT_DIR := $(shell find ~/Documents -name "Word Script Menu Items" | head -1 | sed "s/ /\\\ /g")