diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2018-07-21 09:27:15 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-26 13:16:31 +0100 |
commit | fc47018b02a9b96e88735e1b8a0536f9fb268c62 (patch) | |
tree | 3ce152a38fdb1795df71115eb2966e1281f0827b /meta | |
parent | 7e465c75e317718ed81a76a6c3e487668e7db1ab (diff) | |
download | openembedded-core-fc47018b02a9b96e88735e1b8a0536f9fb268c62.tar.gz openembedded-core-fc47018b02a9b96e88735e1b8a0536f9fb268c62.tar.bz2 openembedded-core-fc47018b02a9b96e88735e1b8a0536f9fb268c62.zip |
no-static-libs.inc: use `?=' to set a default DISABLE_STATIC
It could be overrided by basic variable setting `='.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/distro/include/no-static-libs.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/distro/include/no-static-libs.inc b/meta/conf/distro/include/no-static-libs.inc index 7c165c717f..7fd578b3ce 100644 --- a/meta/conf/distro/include/no-static-libs.inc +++ b/meta/conf/distro/include/no-static-libs.inc @@ -1,4 +1,4 @@ -DISABLE_STATIC = " --disable-static" +DISABLE_STATIC ?= " --disable-static" # qemu aborts on unrecognised option DISABLE_STATIC_pn-qemu = "" |