mirror of
https://github.com/Pmodules/Pmodules.git
synced 2026-06-28 10:29:37 +02:00
Merge branch '438-build-system-configure_args-are-not-handled-correct' into 'master'
Resolve "build-system: configure_args are not handled correct" Closes #438 See merge request Pmodules/src!470
This commit is contained in:
@@ -492,10 +492,10 @@ pbuild::prep() {
|
||||
|
||||
#..............................................................................
|
||||
#
|
||||
pbuild::add_configure_args() {
|
||||
CONFIGURE_ARGS+=( "$@" )
|
||||
pbuild.set_configure_args(){
|
||||
CONFIGURE_ARGS=( "$@" )
|
||||
}
|
||||
readonly -f pbuild::add_configure_args
|
||||
readonly -f pbuild.set_configure_args
|
||||
|
||||
pbuild.add_configure_args(){
|
||||
CONFIGURE_ARGS+=( "$@" )
|
||||
|
||||
@@ -1208,7 +1208,7 @@ build_modules_yaml_v1(){
|
||||
set_configure_args(){
|
||||
local -a args=()
|
||||
readarray -t args <<< "$1"
|
||||
pbuild.add_configure_args "${args[@]}"
|
||||
pbuild.set_configure_args "${args[@]}"
|
||||
}
|
||||
|
||||
set_patch_files(){
|
||||
|
||||
Reference in New Issue
Block a user