From: Rene Wagner Date: Wed, 5 Oct 2005 13:15:20 +0000 (+0000) Subject: binconfig.bbclass: add new BINCONFIG_GLOB variable to allow passing a different glob... X-Git-Tag: Release-2010-05/1~9453^2~3359^2~4^2~1 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=303731ed22883cdfbc69f7d4cd974a10bfcc0185;p=openembedded.git binconfig.bbclass: add new BINCONFIG_GLOB variable to allow passing a different glob to find --- diff --git a/classes/binconfig.bbclass b/classes/binconfig.bbclass index a599dec3f2..bf15ebcdf9 100644 --- a/classes/binconfig.bbclass +++ b/classes/binconfig.bbclass @@ -24,8 +24,10 @@ def is_native(d): import bb.data return ["","-native"][bb.data.inherits_class('native', d)] +BINCONFIG_GLOB ?= "*-config" + do_stage_append() { - for config in `find ${S} -name '*-config'`; do + for config in `find ${S} -name '${BINCONFIG_GLOB}'`; do configname=`basename $config`${@is_native(d)} install -d ${STAGING_BINDIR} cat $config | sed ${@get_binconfig_mangle(d)} > ${STAGING_BINDIR}/$configname