Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386 Run $(TOOL_CTAGS) instead of ctags: sometimes ...



details:   https://anonhg.NetBSD.org/src/rev/f3339fca0975
branches:  trunk
changeset: 782248:f3339fca0975
user:      dyoung <dyoung%NetBSD.org@localhost>
date:      Tue Oct 23 16:08:12 2012 +0000

description:
Run $(TOOL_CTAGS) instead of ctags: sometimes it's better than the host's
native ctags, and it's nice to have consistent ctags from one host to another.

diffstat:

 sys/arch/i386/Makefile |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (23 lines):

diff -r b75d6e3c6eaf -r f3339fca0975 sys/arch/i386/Makefile
--- a/sys/arch/i386/Makefile    Tue Oct 23 15:30:45 2012 +0000
+++ b/sys/arch/i386/Makefile    Tue Oct 23 16:08:12 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.42 2011/09/02 22:12:48 dyoung Exp $
+#      $NetBSD: Makefile,v 1.43 2012/10/23 16:08:12 dyoung Exp $
 
 # Makefile for i386 tags file and boot blocks
 
@@ -34,10 +34,10 @@
 
 tags:
        -rm -f ${TI386}
-       -echo ${SI386} | xargs ctags -wadtf ${TI386}
+       -echo ${SI386} | xargs $(TOOL_CTAGS) -wadtf ${TI386}
        -find -H ${SYSDIR}/external/bsd/acpica/dist/ -name '*.[ch]' | \
-           sort -t / -u | xargs ctags -wadtf ${TI386}
-       -${FINDCOMM} | xargs ctags -wadtf ${TI386}
+           sort -t / -u | xargs $(TOOL_CTAGS) -wadtf ${TI386}
+       -${FINDCOMM} | xargs $(TOOL_CTAGS) -wadtf ${TI386}
        egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
            ${TOOL_SED} -e \
        "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3     \1      /^\2(\3\4$$/;" \



Home | Main Index | Thread Index | Old Index