From 37fc8f69a4a61033ce82bbb9f8332aeb4eaf6af0 Mon Sep 17 00:00:00 2001 From: Maciej Barć Date: Fri, 3 Feb 2023 14:51:12 +0100 Subject: Makefile: bugfix - FIND -> RM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ecb9ff5..040ef89 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ ELS = $(wildcard $(PWD)/*.el) ELCS = $(ELS:.el=.elc) EMACS := emacs -FIND := rm -f +RM := rm -f EMACFLAGS := --batch -q --no-site-file -L $(PWD) EMACSCMD = $(EMACS) $(EMACFLAGS) -- cgit v1.2.3-65-gdbad