Date: Wed, 28 May 2014 19:52:02 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r266819 - head/sys Message-ID: <201405281952.s4SJq2Ha037873@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Wed May 28 19:52:01 2014 New Revision: 266819 URL: http://svnweb.freebsd.org/changeset/base/266819 Log: Add a temporary hack to change the various non-build related special targets like 'cscope' and 'glimpse' to not depend on src.opts.mk or bsd.*.mk. Reviewed by: imp Modified: head/sys/Makefile Modified: head/sys/Makefile ============================================================================== --- head/sys/Makefile Wed May 28 19:05:46 2014 (r266818) +++ head/sys/Makefile Wed May 28 19:52:01 2014 (r266819) @@ -1,11 +1,14 @@ # $FreeBSD$ +.if !(make(cscope) || make(cscope-clean) || make(cscope-hook) || make(TAGS) || \ + make(glimpse) || make(glimpse-clean)) .include <src.opts.mk> # The boot loader .if ${MK_BOOT} != "no" SUBDIR= boot .endif +.endif # Directories to include in cscope name file and TAGS. CSCOPEDIRS= boot bsm cam cddl compat conf contrib crypto ddb dev fs gdb \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405281952.s4SJq2Ha037873>