From: adilger Date: Mon, 20 Jan 2003 18:32:44 +0000 (+0000) Subject: Don't tag files in extN.orig and extN-include.orig. X-Git-Tag: v1_7_100~1^71~36 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=a827287f63525d57c37aa13b4275a983a5ff8aea;p=fs%2Flustre-release.git Don't tag files in extN.orig and extN-include.orig. --- 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"