Re: [yocto] what does ${libdir} refer to?

2016-04-21 Thread Christopher Larson
No, libdir is /usr/lib on the target. We never write to the host system outside the build directory. do_install installs a lib into ${D}${libdir}, and then the contents of ${D} get split up into individual binary packages, and those packages are then installed in a root filesystem and archived

[yocto] what does ${libdir} refer to?

2016-04-21 Thread 杜 昊
Hello there! I have a question about the absolute path of ${libdir}. for example in poco recipe: here is: PACKAGES += "${PN}-dev ${PN}-staticdev" FILES_${PN}-dev = "${includedir} ${libdir}/libPoco*.so ${libdir}/cmake" FILES_${PN}-staticdev = "${libdir}/libPoco*.a" i have searched for the