All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH] binconfig.bbclass: search configs in PKGD instead of S
@ 2011-01-27 22:31 Stanislav Brabec
  2011-01-28  1:19 ` Andreas Oberritter
  2011-01-28  5:03 ` Khem Raj
  0 siblings, 2 replies; 4+ messages in thread
From: Stanislav Brabec @ 2011-01-27 22:31 UTC (permalink / raw)
  To: openembedded-devel

Hallo.

It seems that searching for binconfig in S makes more problems than it
brings benefits. It breaks for example ncurses - it populates
ncurses-config instead of ncurses5-config and ncursesw5-config).

Searching in the installed root seems to be more logical.

Most packages don't need to be ported to this change, as they install
config file with the same name as it exists in sources. But probably
several will need porting.

--- a/classes/binconfig.bbclass
+++ b/classes/binconfig.bbclass
@@ -49,7 +49,7 @@
 SYSROOT_PREPROCESS_FUNCS += "binconfig_sysroot_preprocess"
 
 binconfig_sysroot_preprocess () {
-	for config in `find ${S} -name '${BINCONFIG_GLOB}'`; do
+	for config in `find ${PKGD} -name '${BINCONFIG_GLOB}'`; do
 		configname=`basename $config`
 		install -d ${SYSROOT_DESTDIR}${STAGING_BINDIR_CROSS}
 		cat $config | sed ${@get_binconfig_mangle(d)} > ${SYSROOT_DESTDIR}${STAGING_BINDIR_CROSS}/$configname

-- 

________________________________________________________________________
Stanislav Brabec
http://www.penguin.cz/~utx/zaurus




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-01-28 14:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-27 22:31 [RFC][PATCH] binconfig.bbclass: search configs in PKGD instead of S Stanislav Brabec
2011-01-28  1:19 ` Andreas Oberritter
2011-01-28 14:32   ` Stanislav Brabec
2011-01-28  5:03 ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.