Closed jave closed 9 years ago
Lately Ive not been using the above workaround, but instead this makefile:
EMACS_COMMAND := emacs
EMACS := $(EMACS_COMMAND) -Q -batch
EVAL := $(EMACS) --eval
PKGDIR := .
LOADPATH := -L . -L /home/joakim/.emacs.d/elpa/markdown-mode-20140914.1012
EL := $(wildcard o-blog*.el)
ELC := $(EL:.el=.elc)
.PHONY: clean autoloads batch-compile
all: clean autoloads batch-compile
$(ELC): %.elc: %.el $(EMACS) $(LOADPATH) -f batch-byte-compile $<
compile: $(ELC)
batch-compile: $(EMACS) $(LOADPATH) -f batch-byte-compile $(EL)
clean: rm -f $(ELC)
autoloads: $(EVAL) "(let ((generated-autoload-file (expand-file-name \"o-blog-autoloads.el\" \"$(PKGDIR)\")) \ (backup-inhibited t)) (update-directory-autoloads \"$(PKGDIR)\"))"
the makefile is mostly copy pasted from Helm. the el-get install method ought to do basically the same thing so im not sure why there would be a difference.
Is this still a need for you?
no longer needed!
This works for me.
This works for me, exporting my site from a fresh emacs: http://www.verona.se
I dont really get why this workaround helps, since the o-blog code looks okay.
Anyhow, just thought this might help someone.