Fixed when rebuild pbzip2: make: Nothing to be done for `all' This may cause unexpected errors, for example, when depends libs changed: | pbzip2: error while loading shared libraries: libbz2.so.0: cannot open shared object file: No such file or directory
Signed-off-by: Robert Yang <[email protected]> --- meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb b/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb index b3c5975..67fb2ef 100644 --- a/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb +++ b/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb @@ -22,6 +22,18 @@ do_configure[noexec] = "1" EXTRA_OEMAKE = "CXX='${CXX} ${CXXFLAGS}' LDFLAGS='${LDFLAGS}'" +do_compile_prepend() { + # Update timestamp to fix rebuild + src_files="pbzip2.cpp BZ2StreamScanner.cpp ErrorContext.cpp" + for f in $src_files; do + if [ -f $f ]; then + touch $f + else + bbwarn "Regular file $f not found" + fi + done +} + do_install() { install -d ${D}${bindir} install -m 0755 pbzip2 ${D}${bindir}/ -- 2.7.4 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
