Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Feb 2016 16:07:12 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r295663 - head/usr.sbin/amd/include
Message-ID:  <201602161607.u1GG7CDx056213@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Tue Feb 16 16:07:12 2016
New Revision: 295663
URL: https://svnweb.freebsd.org/changeset/base/295663

Log:
  Revert r295648 for now.
  
  This builds fine with FAST_DEPEND but the mkdep method requires that
  include/ generates the headers during 'make depend' so the subsequent
  directories can find them when running mkdep.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/usr.sbin/amd/include/Makefile

Modified: head/usr.sbin/amd/include/Makefile
==============================================================================
--- head/usr.sbin/amd/include/Makefile	Tue Feb 16 15:18:12 2016	(r295662)
+++ head/usr.sbin/amd/include/Makefile	Tue Feb 16 16:07:12 2016	(r295663)
@@ -9,13 +9,13 @@
 
 .include <src.opts.mk>
 
-HDRS=	config_local.h
+SRCS=	config_local.h
 .if ${MK_NIS} == "no"
-HDRS+=	localconfig.h
+SRCS+=	localconfig.h
 .endif
-CLEANFILES=	${HDRS}
+CLEANFILES=	${SRCS}
 
-all: ${HDRS}
+all depend: ${SRCS}
 
 config_local.h: newvers.sh ${.CURDIR}/../../../sys/conf/newvers.sh
 	@rm -f ${.TARGET}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602161607.u1GG7CDx056213>