diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-21 00:11:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-21 00:11:13 +0100 |
commit | 9a5a783fb131aef98540a81ea6697031a7a429e0 (patch) | |
tree | fc80675ff9f1dcf50951253e3b1d3b5459d208e0 /meta/conf | |
parent | 372f8c841f715d9e21e7cef4fd4106f1559795a8 (diff) | |
download | openembedded-core-9a5a783fb131aef98540a81ea6697031a7a429e0.tar.gz openembedded-core-9a5a783fb131aef98540a81ea6697031a7a429e0.tar.bz2 openembedded-core-9a5a783fb131aef98540a81ea6697031a7a429e0.zip |
sanity.conf: Rename POKY_CONF_VERSION -> LOCALCONF_VERSION and make sanity versions weak assignment allowing the distro to override
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/sanity.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/conf/sanity.conf b/meta/conf/sanity.conf index fcaed11951..2ac1735d50 100644 --- a/meta/conf/sanity.conf +++ b/meta/conf/sanity.conf @@ -7,10 +7,10 @@ BB_MIN_VERSION = "1.8.10" SANITY_ABIFILE = "${TMPDIR}/abi_version" -SANITY_VERSION = "1" -POKY_CONF_VERSION = "1" -LAYER_CONF_VERSION = "4" -SITE_CONF_VERSION = "1" +SANITY_VERSION ?= "1" +LOCALCONF_VERSION ?= "1" +LAYER_CONF_VERSION ?= "4" +SITE_CONF_VERSION ?= "1" INHERIT += "sanity" |