From e9e1268137911050c02d0010608383677e0312cc Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 19 Sep 2019 13:00:06 +0200 Subject: [PATCH] modbuild: typo in definition of pbuild::supported_compilers fixed --- Pmodules/libpbuild.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index e0fe47e..df9ad06 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -186,7 +186,7 @@ pbuild::supported_os() { # $@: supported compiler (like GCC, Intel, PGI). # Default is all. # -pbuild::supported_compiler() { +pbuild::supported_compilers() { SUPPORTED_COMPILERS+=( "$@" ) } #......................................................................