From 6f09adcfc0aeb3535178244429b8978d68ee09b2 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 3 Dec 2025 13:37:19 +0100 Subject: [PATCH] build-system: typo in variable name in pbuild::configure fixed --- Pmodules/libpbuild.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index e5ce846..3f55b85 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -568,7 +568,7 @@ pbuild::configure() { if [[ ! -r "${SRC_DIR}/configure" ]]; then std::die 3 \ "%s " "${module_name}/${module_version}:" \ - "${FNCNAME[0]}:" \ + "${FUNCNAME[0]}:" \ "autotools configuration not available, aborting..." fi ;; @@ -576,7 +576,7 @@ pbuild::configure() { if [[ ! -r "${SRC_DIR}/CMakeLists.txt" ]]; then std::die 3 \ "%s " "${module_name}/${module_version}:" \ - "${FNCNAME[0]}:" \ + "${FUNCNAME[0]}:" \ "CMake script not available, aborting..." fi ;;