From f117e47f334f227173c61725c273933ca99e42f8 Mon Sep 17 00:00:00 2001 From: Stephan Creutz Date: Sun, 13 Jun 2021 20:13:25 +0200 Subject: [PATCH] Fix emms recipe Without this commit, installation of emms fails with: make: *** No rule to make target 'autoloads'. Stop. --- recipes/emms.rcp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/recipes/emms.rcp b/recipes/emms.rcp index 67fc6fce..e962ec8c 100644 --- a/recipes/emms.rcp +++ b/recipes/emms.rcp @@ -3,13 +3,12 @@ :type git :url "git://git.sv.gnu.org/emms.git" :info "doc" - :load-path ("./lisp") :features emms-setup :build `(("mkdir" "-p" ,(expand-file-name (format "%s/emms" user-emacs-directory))) ("make" ,(format "EMACS=%s" el-get-emacs) ,(format "SITEFLAG=--no-site-file") - "autoloads" "lisp" "docs")) + "all")) :build/berkeley-unix `(("mkdir" "-p" ,(expand-file-name (format "%s/emms" user-emacs-directory))) ("gmake" ,(format "EMACS=%s" el-get-emacs) ,(format "SITEFLAG=--no-site-file") - "autoloads" "lisp" "docs"))) + "all")))