From c5012be804e42e75c2809d16595efc55b0d2f74b Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Tue, 12 Mar 2019 14:49:44 +0100 Subject: [PATCH] fixes in libpbuild.bash - create prefix directory after compilation succeeded - path to 'true(1)' fixed --- Pmodules/libpbuild.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index 2943be8..5fb5594 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -1020,6 +1020,7 @@ pbuild::make_all() { build_target "${BUILD_DIR}" compile [[ "${build_target}" == "compile" ]] && return 0 + mkdir -p "${PREFIX}" build_target "${BUILD_DIR}" install post_install @@ -1212,7 +1213,7 @@ pbuild.bootstrap() { bootstrap='yes' - MODULECMD='/bin/true' + MODULECMD='/usr/bin/true' GROUP='Tools' PREFIX="${PMODULES_ROOT}/${GROUP}/Pmodules/${PMODULES_VERSION}"