From bc2189741b56d010086bae9008b3cc4e1859aec6 Mon Sep 17 00:00:00 2001 From: Philipp Marek Date: Sun, 2 Mar 2014 21:56:10 +0100 Subject: [PATCH] Avoid breaking compilation if there's no ctags installed. --- src/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.in b/src/Makefile.in index 4ece3fdc7..12e9f050d 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -259,7 +259,7 @@ selfbuild: # like "@si::foo" and "@(defun si::foo". # This rule is allowed to fail when etags does not exist. .git/tags: - cd $(srcdir)/../.git && ctags -o tags -R --langmap=c:+.d ../src + cd $(srcdir)/../.git && ctags -o tags -R --langmap=c:+.d ../src || true TAGS: -if test "x$(ETAGS)" != "x"; then \ srcfiles=`find $(srcdir)/c $(srcdir)/h -name '*.[chd]'` && \