svn commit: r295663 - head/usr.sbin/amd/include

Bryan Drewery bdrewery at FreeBSD.org
Tue Feb 16 16:07:13 UTC 2016


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}


More information about the svn-src-head mailing list