From b1f7296b7fe117facc1fdfa3068c40cc6fd9278b Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 25 Jun 2014 22:23:19 -0500 Subject: [PATCH] Bugfix: fix mistake in variable usage within generate.sh The $sources variable has invalid bash syntax. --- build/scripts/generate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/generate.sh b/build/scripts/generate.sh index 329308c..2a6b028 100644 --- a/build/scripts/generate.sh +++ b/build/scripts/generate.sh @@ -308,7 +308,7 @@ generate_operation_build(){ elif [[ $failure == "" ]] ; then if [[ $sources_library != "" ]] ; then for i in $sources_library ; do - sources="{sources$path_c$i " + sources="$sources$path_c$i " done echo $compiler $arguments ${variables[$(generate_id flags_static)]} ${variables[$(generate_id flags_library)]} $sources -static -o ${path_build}libraries/lib$name.a -- 1.8.3.1