mirror of
https://github.com/correl/melpa.git
synced 2024-12-22 11:08:54 +00:00
add rules to evaluate packages if older emacs
cl-lib from ELPA is needed with versions of emacs < 24.3. this modification to the Makefile will test if a call to `package-initialize` may be needed.
This commit is contained in:
parent
eddd3de86e
commit
a5859f2e7a
1 changed files with 11 additions and 1 deletions
12
Makefile
12
Makefile
|
@ -5,7 +5,15 @@ HTMLDIR := ./html
|
|||
WORKDIR := ./working
|
||||
EMACS := emacs
|
||||
|
||||
EVAL := $(EMACS) --no-site-file --batch -l package-build.el --eval
|
||||
EVAL := $(EMACS)
|
||||
|
||||
## Check for needing to initialize CL-LIB from ELPA
|
||||
NEED_CL-LIB := $(shell $(EMACS) --no-site-file --batch --eval '(prin1 (version< emacs-version "24.3"))')
|
||||
ifeq ($(NEED_CL-LIB), t)
|
||||
EVAL := $(EVAL) --eval "(package-initialize)"
|
||||
endif
|
||||
|
||||
EVAL := $(EVAL) --no-site-file --batch -l package-build.el --eval
|
||||
|
||||
|
||||
all: build json index
|
||||
|
@ -57,6 +65,8 @@ $(RCPDIR)/.dirstamp: .FORCE
|
|||
## Recipe rules
|
||||
$(RCPDIR)/%: .FORCE
|
||||
@echo " • Building recipe $(@F) ..."
|
||||
|
||||
@echo "---$(TEST)"
|
||||
-rm -vf $(PKGDIR)/$(@F)-*
|
||||
$(EVAL) "(package-build-archive '$(@F))"
|
||||
|
||||
|
|
Loading…
Reference in a new issue