From ce5ba479badb025ce0aaeffc6a60fe9050bc7dcb Mon Sep 17 00:00:00 2001 From: Juampe Lopez Cabrera Date: Thu, 26 May 2016 12:29:19 +0200 Subject: [PATCH] Drop obsolete call to sysroot_stage_libdir It replaces the sysroot_stage_libdir() call as it is no longer available (it was just a wrapper for sysroot_stage_dir() anyway). See: https://github.com/openembedded/openembedded-core/commit/80e7e7f78d957b8159bede2a5cd5614d8d73039c --- classes/ros.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/ros.bbclass b/classes/ros.bbclass index 222672b..e715c64 100644 --- a/classes/ros.bbclass +++ b/classes/ros.bbclass @@ -71,7 +71,7 @@ ros_sysroot_preprocess () { sysroot_stage_dir ${D}${ros_sysconfdir} ${SYSROOT_DESTDIR}${ros_sysconfdir} fi if [ -d ${D}${ros_libdir} ]; then - sysroot_stage_libdir ${D}${ros_libdir} ${SYSROOT_DESTDIR}${ros_libdir} + sysroot_stage_dir ${D}${ros_libdir} ${SYSROOT_DESTDIR}${ros_libdir} fi sysroot_stage_dir ${D}${ros_datadir} ${SYSROOT_DESTDIR}${ros_datadir} if [ -d ${D}${ros_stacksdir} ]; then