diff --git a/CHANGELOG.md b/CHANGELOG.md index 43f3b33..747e4fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ (#1316, #1331) ### build system +* typo in error message in function pbuild::configure() fixed. + (#1338) * Substitute environment variables in TmpDir and DistFilesDir in Pmodules.yaml (#1333) * Function to simplify building modules with pip3 added. 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 ;;