From 51248623b0bf26ea2ef0d1af5f69260196b7ec1a Mon Sep 17 00:00:00 2001 From: Ola Nilsson Date: Wed, 6 Mar 2024 00:40:36 +0100 Subject: [PATCH] Makefile: Exclude buttercup-pkg.el from ELISP_FILES butterkup-pkg.el have the no-byte-compile variable set, so there is no point in cmopling it. And the define-package call causes errors. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2cfa9a7..f47fc93 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ EMACS := emacs VERSION := $(shell sed -ne 's/^;; Version: \(.*\)/\1/p' buttercup.el) -ELISP_FILES := $(wildcard *.el) +ELISP_FILES := $(filter-out buttercup-pkg.el,$(wildcard *.el)) .PHONY: test compile clean