From: Kevin Day Date: Thu, 26 Jun 2014 03:23:19 +0000 (-0500) Subject: Bugfix: fix mistake in variable usage within generate.sh X-Git-Tag: 0.4.1~1 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=b1f7296b7fe117facc1fdfa3068c40cc6fd9278b;p=fll Bugfix: fix mistake in variable usage within generate.sh The $sources variable has invalid bash syntax. --- 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