Date: Mon, 23 Aug 2010 06:22:35 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r211695 - head/sys/kern Message-ID: <201008230622.o7N6MZnT029820@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Mon Aug 23 06:22:35 2010 New Revision: 211695 URL: http://svn.freebsd.org/changeset/base/211695 Log: This should really be MACHINE not MACHINE_ARCH, and is this Makefile even used? Modified: head/sys/kern/Makefile Modified: head/sys/kern/Makefile ============================================================================== --- head/sys/kern/Makefile Mon Aug 23 06:19:57 2010 (r211694) +++ head/sys/kern/Makefile Mon Aug 23 06:22:35 2010 (r211695) @@ -28,7 +28,7 @@ init_sysent.c syscalls.c systrace_args.c # are placed in each source directory. We need to have links to tags files # from the generic directories that are relative to the machine type, even # via remote mounts; therefore we use symlinks to $SYSTAGS, which points at -# ${SYSDIR}/${MACHINE_ARCH}/tags. +# ${SYSDIR}/${MACHINE}/tags. SYSTAGS=/var/db/sys_tags SYSDIR=/sys @@ -51,7 +51,7 @@ tags:: links:: rm -f ${SYSTAGS} - ln -s ${SYSDIR}/${MACHINE_ARCH}/tags ${SYSTAGS} + ln -s ${SYSDIR}/${MACHINE}/tags ${SYSTAGS} -for i in ${DGEN}; do \ (cd ../$$i && { rm -f tags; ln -s ${SYSTAGS} tags; }) done -for i in ${ARCH}; do \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008230622.o7N6MZnT029820>