From a9ea8a660f37bbcf917c71360512ab155241114e Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Thu, 7 Apr 2016 20:03:00 -0700 Subject: pbzip2: fix for rebuild 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 --- 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 b3c5975811..67fb2ef9c5 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}/ -- cgit 1.2.3-korg