Skip to content

Commit

Permalink
Fix ‘make clean’ with a file named ‘-.o’
Browse files Browse the repository at this point in the history
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 ‘-’.
  • Loading branch information
eggert committed Sep 24, 2018
1 parent 662bee7 commit 3624317
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Expand Up @@ -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'
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions doc/emacs/Makefile.in
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/lispintro/Makefile.in
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions doc/lispref/Makefile.in
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions doc/misc/Makefile.in
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion etc/refcards/Makefile
Expand Up @@ -311,7 +311,7 @@ viperCard.dvi: $(vipercard_deps)
.PHONY: clean

clean:
-rm -f *.dvi *.log *.aux
-rm -f ./*.dvi ./*.log ./*.aux

distclean: clean

Expand Down
4 changes: 2 additions & 2 deletions lib-src/Makefile.in
Expand Up @@ -334,7 +334,7 @@ uninstall:
fi

mostlyclean:
rm -f core *.o *.res
rm -f core ./*.o ./*.res

clean: mostlyclean
rm -f ${EXE_FILES}
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile.in
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lwlib/Makefile.in
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion oldXMenu/Makefile.in
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/Makefile.in
Expand Up @@ -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)/*

Expand All @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile.in
Expand Up @@ -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)
Expand Down

0 comments on commit 3624317

Please sign in to comment.