From a86af3f8fa2ca2a6ce964099b6dae0a866d2bf41 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 23 Aug 2019 23:00:14 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20install=20for=20=E2=80=98oni-conf?= =?UTF-8?q?=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GNUmakefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index aa165a8..782f062 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -24,6 +24,14 @@ install-%: $(foreach DEP,$(DEPS),--eval "(package-install-file \"$(DEP).el\")") \ --eval "(package-install-file \"$*.el\")" \ +install-oni-conf: + emacs --batch \ + --load oni-package.el \ + --funcall package-initialize \ + --eval '(package-refresh-contents)' \ + $(foreach DEP,$(DEPS),--eval "(package-install-file \"$(DEP).el\")") \ + --eval "(package-install-file (car (sort (file-expand-wildcards \"oni-conf/dist/*.tar\") #'string>)))" \ + test-%: install-% emacs --batch \ --load oni-package.el \