[yocto] Which is the best strategy to customize Qt configuration?

Elvis Dowson elvis.dowson at gmail.com
Mon Jul 13 11:10:11 PDT 2015


> On Jul 13, 2015, at 22:04, Martin Jansa <martin.jansa at gmail.com> wrote:
> 
> Will this work if gstreamer gst-plugins-base aren't next to each other
> in DEPENDS?
> 
> I think good convention is to use:
> DEPENDS_remove = "gstreamer"
> DEPENDS_remove = "gst-plugins-base"
> for it to work even after original DEPENDS in the recipe is re-ordered
> or changed.

Shouldn't you be using += instead of =, so that you append to the list:

DEPENDS_remove += "gstreamer"
DEPENDS_remove += "gst-plugins-base"

The earlier line had it in one line, so it was okay:

DEPENDS_remove = "gstreamer gst-plugins-base"

Regards,

Elvis Dowson



More information about the yocto mailing list