[OE-core] [PATCH] cwautomacros: cleanup buildpath in autogen.sh

jackie.huang at windriver.com jackie.huang at windriver.com
Tue Sep 22 09:16:13 UTC 2015


From: Jackie Huang <jackie.huang at windriver.com>

CWAUTOMACROSPREFIX is ${D}${prefix} which is used as the prefix
of install dir and used to replace the path placeholder in script
autogen.sh, the former is correct but not for the later, we can
fix the Makefile to use two variables for this, but I think a sed
replacement would be fine since the package has not been in
development for a long time.

Signed-off-by: Jackie Huang <jackie.huang at windriver.com>
---
 meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
index 43ea3ce..65a99fc 100644
--- a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
+++ b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
@@ -14,6 +14,9 @@ do_configure() {
 
 do_install() {
 	oe_runmake CWAUTOMACROSPREFIX=${D}${prefix} install
+
+	# cleanup buildpaths in autogen.sh
+	sed -i -e 's,${D},,g' ${D}${prefix}/share/cwautomacros/scripts/autogen.sh
 }
 
 BBCLASSEXTEND = "native"
-- 
1.9.1




More information about the Openembedded-core mailing list