Skip to content

Commit

Permalink
Makefile: Exclude buttercup-pkg.el from ELISP_FILES
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
snogge committed Mar 5, 2024
1 parent 030e5eb commit 5124862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 5124862

Please sign in to comment.