Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 357319 | Differences between
and this patch

Collapse All | Expand All

(-)src/Makefile.in.orig (-2 / +1 lines)
Lines 246-252 Link Here
246
# like "@si::foo" and "@(defun si::foo".
246
# like "@si::foo" and "@(defun si::foo".
247
# This rule is allowed to fail when etags does not exist.
247
# This rule is allowed to fail when etags does not exist.
248
TAGS:
248
TAGS:
249
	echo > $@
250
	if test "x$(ETAGS)" != "x"; then \
249
	if test "x$(ETAGS)" != "x"; then \
251
	srcfiles=`find $(srcdir)/c $(srcdir)/h -name '*.[chd]'` && \
250
	srcfiles=`find $(srcdir)/c $(srcdir)/h -name '*.[chd]'` && \
252
	$(ETAGS) --language=c    -o $@ $$srcfiles && \
251
	$(ETAGS) --language=c    -o $@ $$srcfiles && \
Lines 255-258 Link Here
255
	      --regex='/@(defun \([-:*a-zA-z]+\)/\1/' \
254
	      --regex='/@(defun \([-:*a-zA-z]+\)/\1/' \
256
	      $$srcfiles; \
255
	      $$srcfiles; \
257
	fi
256
	fi
258
257
	touch TAGS

Return to bug 357319