svn commit: r266819 - head/sys

John Baldwin jhb at FreeBSD.org
Wed May 28 19:52:02 UTC 2014


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 \


More information about the svn-src-all mailing list