diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-03-11 23:45:28 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-03-11 23:45:28 +0000 |
commit | b7d28aff1009ed31d870976928b60328bf585d07 (patch) | |
tree | 37e447dacda2e5ea234551343f02afffa679865c /targets/pseudo/kernel | |
parent | bd08afe1c93546441a7b2a7a366579959f098940 (diff) | |
download | src-b7d28aff1009ed31d870976928b60328bf585d07.tar.gz src-b7d28aff1009ed31d870976928b60328bf585d07.zip |
META_MODE: Simplify the META_COOKIE handling to use .USE/.USEBEFORE.
Extend it to other cases of meta mode cookies so they get the proper rm
cookie behavior when a .meta file detects it needs to rebuild and fails.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=296700
Diffstat (limited to 'targets/pseudo/kernel')
-rw-r--r-- | targets/pseudo/kernel/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/targets/pseudo/kernel/Makefile b/targets/pseudo/kernel/Makefile index 502c830eeabe..8783d358750e 100644 --- a/targets/pseudo/kernel/Makefile +++ b/targets/pseudo/kernel/Makefile @@ -10,11 +10,10 @@ KERN_CONFDIR= ${SRCTOP}/sys/${TARGET}/conf CONFIG= ${STAGE_HOST_OBJTOP}/usr/sbin/config -${KERNCONF}.config: .MAKE .META +${KERNCONF}.config: .MAKE ${META_DEPS} mkdir -p ${KERN_OBJDIR:H} (cd ${KERN_CONFDIR} && \ ${CONFIG} ${CONFIGARGS} -d ${KERN_OBJDIR} ${KERNCONF}) - @touch $@ # we need to pass curdirOk=yes to meta mode, since we want .meta files # in ${KERN_OBJDIR} |