then
echo "End modules build Lib Scen";
echo $line_scen;
- if [[ "$line_libs" =~ "ELEMENTARY" ]]; then
- cd elementary
- ./build.sh &> "result.txt"
- cd ..
- elif [[ "$line_libs" =~ "EINA" ]]; then
- cd eina
- ./build.sh &> "result.txt"
- cd ..
- elif [[ "$line_libs" =~ "ECORE" ]]; then
- cd ecore
- ./build.sh &> "result.txt"
- cd ..
- elif [[ "$line_libs" =~ "EIO" ]]; then
- cd eio
- ./build.sh &> "result.txt"
- cd ..
- elif [[ "$line_libs" =~ "EET" ]]; then
- cd eet
- ./build.sh &> "result.txt"
- cd ..
- elif [[ "$line_libs" =~ "EDJE" ]]; then
- cd edje
- ./build.sh &> "result.txt"
- cd ..
- elif [[ "$line_libs" =~ "EVAS" ]]; then
- cd evas
- ./build.sh &> "result.txt"
- cd ..
- fi
- for i in $(find -name 'result.txt'); do
- if [[ `grep 'Error 1' < $i` ]]; then
- cat $i
- exit 1
- fi
- done
isBuildScen=0
break;
fi
done < $filename
done < $FileLibsScen
+cd elementary
+./build.sh &> "result.txt"
+cd ..
+cd eina
+./build.sh &> "result.txt"
+cd ..
+cd ecore
+./build.sh &> "result.txt"
+cd ..
+cd eio
+./build.sh &> "result.txt"
+cd ..
+cd eet
+./build.sh &> "result.txt"
+cd ..
+cd edje
+./build.sh &> "result.txt"
+cd ..
+cd evas
+./build.sh &> "result.txt"
+cd ..
+for i in $(find -name 'result.txt'); do
+ if [[ `grep 'Error 1' < $i` ]]; then
+ cat $i
+ exit 1
+ fi
+done
#write build journal
touch "$JOURNAL_RESULT"