Merge pull request #1339 from Pmodules/1338-typo-in-libpbuildbash

build-system: typo in variable name in pbuild::configure fixed
This commit is contained in:
2025-12-03 13:43:27 +01:00
committed by GitHub
co-authored by GitHub
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -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.
+2 -2
View File
@@ -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
;;