diff options
author | kensmith <kensmith@FreeBSD.org> | 2004-01-29 14:58:22 +0000 |
---|---|---|
committer | kensmith <kensmith@FreeBSD.org> | 2004-01-29 14:58:22 +0000 |
commit | a6cdfd4c8d33483fc14e4450a060569d7a8ae5dd (patch) | |
tree | e934894e72636871c3dcc6310b9b84eee9e5210b /sys | |
parent | a5eee69dd6d2432b9fc4db3f5fd801dd4bdca996 (diff) | |
download | FreeBSD-src-a6cdfd4c8d33483fc14e4450a060569d7a8ae5dd.zip FreeBSD-src-a6cdfd4c8d33483fc14e4450a060569d7a8ae5dd.tar.gz |
Fix pathname so 'make tags' in a kernel build directory looks in
the right place for the $MACHINE/include directory.
Approved by: rwatson (mentor)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/systags.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/conf/systags.sh b/sys/conf/systags.sh index a8e0e4d..b23d99a 100644 --- a/sys/conf/systags.sh +++ b/sys/conf/systags.sh @@ -41,7 +41,7 @@ rm -f tags tags.tmp tags.cfiles tags.sfiles tags.hfiles MACHINE=`uname -m` -sed -e "s, machine/, ../../$MACHINE/include/,g" \ +sed -e "s, machine/, ../../../$MACHINE/include/,g" \ -e 's,[a-z][^/ ]*/\.\./,,g' .depend | awk '{ for (i = 1; i <= NF; ++i) { t = substr($i, length($i) - 1) |