[oe-commits] [openembedded-core] 24/33: meson.bbclass: allow buildtype to be changed

git at git.openembedded.org git at git.openembedded.org
Mon Dec 16 23:28:05 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 5b12211ef7856bedafd356f6b7a03add46eca6c7
Author: Trevor Woerner <twoerner at gmail.com>
AuthorDate: Wed Dec 11 12:08:18 2019 -0500

    meson.bbclass: allow buildtype to be changed
    
    Some upstream projects are employing the buildtype parameter so users
    can create, say, "production" versus "debug" builds. Therefore create a
    configurable parameter so recipes/users can tweak it.
    
    Signed-off-by: Trevor Woerner <twoerner at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/meson.bbclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass
index dc8c289..e1a13bb 100644
--- a/meta/classes/meson.bbclass
+++ b/meta/classes/meson.bbclass
@@ -12,8 +12,9 @@ MESON_SOURCEPATH = "${S}"
 def noprefix(var, d):
     return d.getVar(var).replace(d.getVar('prefix') + '/', '', 1)
 
+MESON_BUILDTYPE ?= "plain"
 MESONOPTS = " --prefix ${prefix} \
-              --buildtype plain \
+              --buildtype ${MESON_BUILDTYPE} \
               --bindir ${@noprefix('bindir', d)} \
               --sbindir ${@noprefix('sbindir', d)} \
               --datadir ${@noprefix('datadir', d)} \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list