From a827287f63525d57c37aa13b4275a983a5ff8aea Mon Sep 17 00:00:00 2001 From: adilger Date: Mon, 20 Jan 2003 18:32:44 +0000 Subject: [PATCH] Don't tag files in extN.orig and extN-include.orig. --- lustre/Rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/Rules b/lustre/Rules index cbcf51f..3646bdf 100644 --- a/lustre/Rules +++ b/lustre/Rules @@ -17,8 +17,8 @@ tags: rm -f $(top_srcdir)/TAGS rm -f $(top_srcdir)/tags find $(top_srcdir)/../portals/ -name '*.[hc]' | xargs etags -a - find $(top_srcdir) -name '*.[hc]' | xargs etags -a + find $(top_srcdir) -name '*.[hc]' | grep -v ".orig" | xargs etags -a find $(top_srcdir)/../portals/ -name '*.[hc]' | xargs ctags -a - find $(top_srcdir) -name '*.[hc]' | xargs ctags -a + find $(top_srcdir) -name '*.[hc]' | grep -v ".orig" | xargs ctags -a AM_CPPFLAGS="-I$(top_builddir)/include" -- 1.8.3.1