From a32070a6584cb113f39341934b86dcddff824d9c Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 4 Sep 2019 15:27:24 +0200 Subject: [PATCH] modbuild: slash removed from PREFIX --- Pmodules/libpbuild.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index da9c91c..892f4d1 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -212,10 +212,10 @@ set_full_module_name_and_prefix() { # set full module name fully_qualified_module_name=$( join_by '/' "${name[@]}" ) # set PREFIX of module - PREFIX="${PMODULES_ROOT}/${GROUP}/" + PREFIX="${PMODULES_ROOT}/${GROUP}" local -i i=0 for ((i=${#name[@]}-1; i >= 0; i--)); do - PREFIX+="${name[i]}/" + PREFIX+="/${name[i]}" done }