mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-24 10:38:38 +00:00
Fix ‘make clean’ with a file named ‘-.o’
Problem reported by T.V Raman in: https://lists.gnu.org/r/emacs-devel/2018-09/msg00866.html * Makefile.in (clean, extraclean): * doc/emacs/Makefile.in (mostlyclean): * doc/lispintro/Makefile.in (mostlyclean): * doc/lispref/Makefile.in (mostlyclean): * doc/misc/Makefile.in (mostlyclean, clean): * etc/refcards/Makefile (clean): * lib-src/Makefile.in (mostlyclean, extraclean): * lib/Makefile.in (clean): * lwlib/Makefile.in (clean mostlyclean): * oldXMenu/Makefile.in (clean mostlyclean): * src/Makefile.in (mostlyclean, extraclean): * test/Makefile.in (mostlyclean): Say ‘rm ./*.o’ instead of ‘rm *.o’ to avoid undesirable failure when a file name begins with ‘-’.
This commit is contained in:
parent
662bee7d70
commit
3624317969
@ -839,7 +839,7 @@ $(foreach dir,$(clean_dirs),$(eval $(call submake_template,$(dir),clean)))
|
||||
clean: $(clean_dirs:=_clean)
|
||||
$(MAKE) -C admin/charsets $@
|
||||
[ ! -d test ] || $(MAKE) -C test $@
|
||||
-rm -f *.tmp etc/*.tmp*
|
||||
-rm -f ./*.tmp etc/*.tmp*
|
||||
-rm -rf info-dir.*
|
||||
|
||||
### 'bootclean'
|
||||
@ -926,7 +926,7 @@ $(foreach dir,$(extraclean_dirs),$(eval $(call submake_template,$(dir),extraclea
|
||||
extraclean: $(extraclean_dirs:=_extraclean)
|
||||
${top_maintainer_clean}
|
||||
-rm -f config-tmp-*
|
||||
-rm -f *~ \#*
|
||||
-rm -f ./*~ \#*
|
||||
|
||||
# The src subdir knows how to do the right thing
|
||||
# even when the build directory and source dir are different.
|
||||
|
@ -206,8 +206,8 @@ doc-emacsver:
|
||||
|
||||
## Temp files.
|
||||
mostlyclean:
|
||||
rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \
|
||||
*.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs
|
||||
rm -f ./*.aux ./*.log ./*.toc ./*.cp ./*.cps ./*.fn ./*.fns ./*.ky ./*.kys \
|
||||
./*.op ./*.ops ./*.pg ./*.pgs ./*.tp ./*.tps ./*.vr ./*.vrs
|
||||
|
||||
## Products not in the release tarfiles.
|
||||
clean: mostlyclean
|
||||
|
@ -109,8 +109,8 @@ emacs-lisp-intro.ps: emacs-lisp-intro.dvi
|
||||
.PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean infoclean
|
||||
|
||||
mostlyclean:
|
||||
rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \
|
||||
*.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs
|
||||
rm -f ./*.aux ./*.log ./*.toc ./*.cp ./*.cps ./*.fn ./*.fns ./*.ky ./*.kys \
|
||||
./*.op ./*.ops ./*.pg ./*.pgs ./*.tp ./*.tps ./*.vr ./*.vrs
|
||||
|
||||
clean: mostlyclean
|
||||
rm -f $(DVI_TARGETS) $(HTML_TARGETS) $(PDF_TARGETS) $(PS_TARGETS)
|
||||
|
@ -167,8 +167,8 @@ elisp.ps: elisp.dvi
|
||||
|
||||
## [12] stuff is from two-volume.make.
|
||||
mostlyclean:
|
||||
rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \
|
||||
*.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs
|
||||
rm -f ./*.aux ./*.log ./*.toc ./*.cp ./*.cps ./*.fn ./*.fns ./*.ky ./*.kys \
|
||||
./*.op ./*.ops ./*.pg ./*.pgs ./*.tp ./*.tps ./*.vr ./*.vrs
|
||||
rm -f elisp[12]* vol[12].tmp
|
||||
|
||||
clean: mostlyclean
|
||||
|
@ -224,13 +224,13 @@ ${buildinfodir}/tramp.info tramp.html: ${srcdir}/trampver.texi
|
||||
.PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean
|
||||
|
||||
mostlyclean:
|
||||
rm -f *.aux *.log *.toc *.c[mp] *.c[mp]s *.fn *.fns \
|
||||
*.ky *.kys *.op *.ops *.p[gj] *.p[gj]s *.sc *.scs *.ss \
|
||||
*.t[gp] *.t[gp]s *.vr *.vrs
|
||||
rm -f ./*.aux ./*.log ./*.toc ./*.c[mp] ./*.c[mp]s ./*.fn ./*.fns \
|
||||
./*.ky ./*.kys ./*.op ./*.ops ./*.p[gj] ./*.p[gj]s ./*.sc ./*.scs ./*.ss \
|
||||
./*.t[gp] ./*.t[gp]s ./*.vr ./*.vrs
|
||||
rm -f gnustmp*
|
||||
|
||||
clean: mostlyclean
|
||||
rm -f *.dvi *.html *.pdf *.ps
|
||||
rm -f ./*.dvi ./*.html ./*.pdf ./*.ps
|
||||
|
||||
distclean: clean
|
||||
rm -f Makefile
|
||||
|
@ -311,7 +311,7 @@ viperCard.dvi: $(vipercard_deps)
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
-rm -f *.dvi *.log *.aux
|
||||
-rm -f ./*.dvi ./*.log ./*.aux
|
||||
|
||||
distclean: clean
|
||||
|
||||
|
@ -334,7 +334,7 @@ uninstall:
|
||||
fi
|
||||
|
||||
mostlyclean:
|
||||
rm -f core *.o *.res
|
||||
rm -f core ./*.o ./*.res
|
||||
|
||||
clean: mostlyclean
|
||||
rm -f ${EXE_FILES}
|
||||
@ -345,7 +345,7 @@ distclean: clean
|
||||
bootstrap-clean maintainer-clean: distclean
|
||||
|
||||
extraclean: maintainer-clean
|
||||
rm -f *~ \#*
|
||||
rm -f ./*~ \#*
|
||||
|
||||
## Test the contents of the directory.
|
||||
check:
|
||||
|
@ -118,7 +118,7 @@ TAGS: $(ETAGS) $(tagsfiles)
|
||||
.PHONY: $(ETAGS) tags
|
||||
|
||||
clean:
|
||||
rm -f *.[ao] *-t \#* $(DEPDIR)/*
|
||||
rm -f ./*.[ao] ./*-t \#* $(DEPDIR)/*
|
||||
mostlyclean: clean
|
||||
rm -f $(filter-out %-t,$(MOSTLYCLEANFILES))
|
||||
distclean bootstrap-clean: mostlyclean
|
||||
|
@ -111,7 +111,7 @@ $(globals_h):
|
||||
.PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean
|
||||
|
||||
clean mostlyclean:
|
||||
rm -f *.o liblw.a \#* $(DEPDIR)/*
|
||||
rm -f ./*.o liblw.a \#* $(DEPDIR)/*
|
||||
|
||||
distclean: clean
|
||||
rm -f Makefile
|
||||
|
@ -138,7 +138,7 @@ libXMenu11.a: $(OBJS) $(EXTRA)
|
||||
.PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean
|
||||
|
||||
clean mostlyclean:
|
||||
rm -f libXMenu11.a *.o $(DEPDIR)/*
|
||||
rm -f libXMenu11.a ./*.o $(DEPDIR)/*
|
||||
|
||||
bootstrap-clean maintainer-clean distclean: clean
|
||||
rm -f Makefile
|
||||
|
@ -645,12 +645,12 @@ ns-app: emacs$(EXEEXT)
|
||||
.PHONY: versionclean extraclean
|
||||
|
||||
mostlyclean:
|
||||
rm -f temacs$(EXEEXT) core *.core \#* *.o
|
||||
rm -f temacs$(EXEEXT) core ./*.core \#* ./*.o
|
||||
rm -f ../etc/DOC
|
||||
rm -f bootstrap-emacs$(EXEEXT) emacs-$(version)$(EXEEXT)
|
||||
rm -f buildobj.h
|
||||
rm -f globals.h gl-stamp
|
||||
rm -f *.res *.tmp
|
||||
rm -f ./*.res ./*.tmp
|
||||
clean: mostlyclean
|
||||
rm -f emacs-*.*.*[0-9]$(EXEEXT) emacs$(EXEEXT) $(DEPDIR)/*
|
||||
|
||||
@ -674,7 +674,7 @@ maintainer-clean: distclean
|
||||
versionclean:
|
||||
-rm -f emacs$(EXEEXT) emacs-*.*.*[0-9]$(EXEEXT) ../etc/DOC*
|
||||
extraclean: distclean
|
||||
-rm -f *~ \#*
|
||||
-rm -f ./*~ \#*
|
||||
|
||||
|
||||
ETAGS = ../lib-src/etags${EXEEXT}
|
||||
|
@ -307,7 +307,7 @@ endif
|
||||
|
||||
mostlyclean:
|
||||
-@for f in ${LOGFILES}; do test ! -f $$f || mv $$f $$f~; done
|
||||
rm -f *.tmp
|
||||
rm -f ./*.tmp
|
||||
|
||||
clean:
|
||||
find . '(' -name '*.log' -o -name '*.log~' ')' $(FIND_DELETE)
|
||||
|
Loading…
Reference in New Issue
Block a user