On Thu, Dec 15, 2011 at 09:58, Christian Moe <m...@christianmoe.com> wrote:
> Could someone confirm that etc/styles is automatically installed on Linux /
> that it isn't on Mac?

I don't install after compiling org, but I checked with this:

$ make -n install | grep etc

So I guess that is the problem. The Makefile has no rule to install
etc files, so if you use 'make install' odt export fails.

Also a quick look at the Makefile seems to confirm this (at least in
my limited Makefile understanding)

...
install: install-lisp
...
install-lisp: $(LISPFILES) $(ELCFILES)
        if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
        $(CP) $(LISPFILES)  $(lispdir)
        $(CP) $(ELCFILES)   $(lispdir)
...

-- 
Suvayu

Open source is the future. It sets us free.

Reply via email to