diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-02-28 13:37:58 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-02-28 13:37:58 -0800 |
commit | 09967278795fa0b36e7f1308c2063005a263d936 (patch) | |
tree | 077587dcdb726b454936b8d1b3b8d5d7b3d692b7 | |
parent | Merge branch 'tg/worktree-create-tracking' (diff) | |
parent | Makefile: remove *.spec from clean target (diff) | |
download | tgif-09967278795fa0b36e7f1308c2063005a263d936.tar.xz |
Merge branch 'tz/do-not-clean-spec-file'
We no longer create any *.spec file, so "make clean" should not
remove it.
* tz/do-not-clean-spec-file:
Makefile: remove *.spec from clean target
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2736,7 +2736,7 @@ clean: profile-clean coverage-clean $(RM) $(TEST_PROGRAMS) $(NO_INSTALL) $(RM) -r bin-wrappers $(dep_dirs) $(RM) -r po/build/ - $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h $(ETAGS_TARGET) tags cscope* + $(RM) *.pyc *.pyo */*.pyc */*.pyo common-cmds.h $(ETAGS_TARGET) tags cscope* $(RM) -r $(GIT_TARNAME) .doc-tmp-dir $(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz $(RM) $(htmldocs).tar.gz $(manpages).tar.gz |