]> Kevux Git Server - fll/commitdiff
Bugfix: fix mistake in variable usage within generate.sh
authorKevin Day <thekevinday@gmail.com>
Thu, 26 Jun 2014 03:23:19 +0000 (22:23 -0500)
committerKevin Day <thekevinday@gmail.com>
Thu, 26 Jun 2014 03:23:19 +0000 (22:23 -0500)
The $sources variable has invalid bash syntax.

build/scripts/generate.sh

index 329308cc3a7533a4b690d26456f85318a3d1452c..2a6b0286fade551103525ec55c41e2f4b4acb02f 100644 (file)
@@ -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