Avoid breaking compilation if there's no ctags installed.
authorPhilipp Marek <philipp@marek.priv.at>
Sun, 2 Mar 2014 20:56:10 +0000 (21:56 +0100)
committerPhilipp Marek <philipp@marek.priv.at>
Sun, 2 Mar 2014 20:56:10 +0000 (21:56 +0100)
src/Makefile.in

index 4ece3fd..12e9f05 100644 (file)
@@ -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]'` && \