From b24c0c21bd9aa6416d6e557b0543b9f99a9f8098 Mon Sep 17 00:00:00 2001 From: uid34591 Date: Fri, 5 Jul 2002 22:39:03 +0000 Subject: [PATCH] Fix "tags" target if portals is a symlink --- lustre/Rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/Rules b/lustre/Rules index 00b17e3..6c9e894 100644 --- a/lustre/Rules +++ b/lustre/Rules @@ -16,8 +16,8 @@ $(MODULE).o: $($(MODULE)_OBJECTS) tags: rm -f $(top_srcdir)/TAGS rm -f $(top_srcdir)/tags - find $(top_srcdir)/../portals -name '*.[hc]' | xargs etags -a + find $(top_srcdir)/../portals/ -name '*.[hc]' | xargs etags -a find $(top_srcdir) -name '*.[hc]' | xargs etags -a - find $(top_srcdir)/../portals -name '*.[hc]' | xargs ctags -a + find $(top_srcdir)/../portals/ -name '*.[hc]' | xargs ctags -a find $(top_srcdir) -name '*.[hc]' | xargs ctags -a -- 1.8.3.1