From cd3bf561a96b029266dc843277f682e32acbda55 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 9 Apr 2025 16:39:16 +0200 Subject: [PATCH] build-system: bugfix in rebuild package check --- Pmodules/libpbuild.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index 15675ed..d2a7899 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -1489,7 +1489,7 @@ _build_module() { bm::remove_module elif [[ "${module_release}" == 'deprecated' ]]; then bm::deprecate_module - elif [[ -d "${PREFIX}" || "${is_subpkg}" == 'yes' ]] && [[ "${force_rebuild}" == 'no' ]]; then + elif [[ -d "${PREFIX}" && "${is_subpkg}" != 'yes' ]] && [[ "${force_rebuild}" == 'no' ]]; then std::info \ "%s " \ "${module_name}/${module_version}:" \