Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Medve <Emilian.Medve@Freescale.com>2007-07-14 21:51:44 +0400
committerJunio C Hamano <gitster@pobox.com>2007-07-15 10:31:01 +0400
commit4cb08df553e270ab516a140caeeddd8e94f1e497 (patch)
tree90299460b9fd8f6614dc82d61c29f4369deb0287 /contrib/emacs
parent3f2fd36ebcc2ef15df196bd0544cc9c39da57dbf (diff)
Use $(RM) in Makefiles instead of 'rm -f'
Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/emacs')
-rw-r--r--contrib/emacs/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile
index 98aa0aae9b..5e94d6fcd3 100644
--- a/contrib/emacs/Makefile
+++ b/contrib/emacs/Makefile
@@ -7,6 +7,7 @@ INSTALL ?= install
INSTALL_ELC = $(INSTALL) -m 644
prefix ?= $(HOME)
emacsdir = $(prefix)/share/emacs/site-lisp
+RM ?= rm -f
all: $(ELC)
@@ -17,4 +18,4 @@ install: all
%.elc: %.el
$(EMACS) -batch -f batch-byte-compile $<
-clean:; rm -f $(ELC)
+clean:; $(RM) $(ELC)