From 303731ed22883cdfbc69f7d4cd974a10bfcc0185 Mon Sep 17 00:00:00 2001 From: Rene Wagner Date: Wed, 5 Oct 2005 13:15:20 +0000 Subject: binconfig.bbclass: add new BINCONFIG_GLOB variable to allow passing a different glob to find --- classes/binconfig.bbclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'classes/binconfig.bbclass') 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 -- cgit 1.2.3-korg