From 2c7a1af2773ac00acb8023fa57dab2c1ac600955 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 3 Sep 2025 13:36:51 +0200 Subject: [PATCH] build-system: calling make in pbuild::compile() fixed --- Pmodules/libpbuild.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index bb25331..3892969 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -637,7 +637,7 @@ pbuild::compile() { local -- v_save="$V" unset V (( JOBS == 0 )) && JOBS=$(_get_num_cores) - /bin/bash -c ${make} -j${JOBS} -e || \ + /bin/bash -c "${make} -j${JOBS} -e" || \ std::die 3 \ "%s " "${module_name}/${module_version}:" \ "compilation failed!"