Date: Thu, 13 Feb 1997 14:10:12 -0330 (NST) From: John Rochester <jr@cs.mun.ca> To: FreeBSD-gnats-submit@freebsd.org Subject: i386/2729: fix for "make tags" in sys/kern Message-ID: <199702131740.OAA24195@lyman.cs.mun.ca> Resent-Message-ID: <199702131750.JAA26432@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 2729 >Category: i386 >Synopsis: "make tags" in sys/kern produces barely useful tags file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 13 09:50:02 PST 1997 >Last-Modified: >Originator: John Rochester >Organization: Memorial University of Newfoundland >Release: FreeBSD-current >Environment: >Description: 1. The tags file contains information only from files under /sys/i386. 2. The tags file contains relative paths which only work from a directory immediately under /sys. >How-To-Repeat: cd /sys/kern make tags vi -t bread >Fix: --- sys/i386/Makefile.orig Thu Feb 13 13:43:54 1997 +++ sys/i386/Makefile Thu Feb 13 13:47:34 1997 @@ -3,12 +3,14 @@ # Makefile for i386 tags file +.include "../kern/Make.tags.inc" + all: @echo "make tags or links only" -TI386= ../i386/tags -SI386= ../i386/i386/*.[ch] ../i386/include/*.h ../i386/isa/*.[ch] -AI386= ../i386/i386/*.s +TI386= /sys/i386/tags +SI386= /sys/i386/i386/*.[ch] /sys/i386/include/*.h /sys/i386/isa/*.[ch] +AI386= /sys/i386/i386/*.s # Directories in which to place i386 tags links DI386= eisa isa mca include >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199702131740.OAA24195>