From 695fe498b481909a3302dbca2e4bec591743ed3c Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 9 Aug 2019 17:32:46 +0200 Subject: [PATCH] fix not called 'post_install_linux()' --- Pmodules/libpbuild.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index 2bbbda1..d717faf 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -728,7 +728,7 @@ pbuild::make_all() { post_install_linux() { std::info \ "%s " "${module_name}/${module_version}:" \ - "running post-installation for ${system} ..." + "running post-installation for ${OS} ..." cd "${PREFIX}" # solve multilib problem with LIBRARY_PATH # on 64bit Linux @@ -737,7 +737,7 @@ pbuild::make_all() { } cd "${BUILD_DIR}" - [[ "${system}" == "Linux" ]] && post_install_linux + [[ "${OS}" == "Linux" ]] && post_install_linux install_doc install_pmodules_files write_runtime_dependencies