File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1110,7 +1110,7 @@ build_depcheck() {
11101110 for dll in $( find " ${PREFIX} /bin" -type f -name ' *.dll' ) ; do
11111111 # https://wiki.unvanquished.net/wiki/MinGW#Built-in_DLL_dependencies
11121112 if objdump -p " ${dll} " | grep -oP ' (?<=DLL Name: )(libgcc_s|libstdc|libssp|libwinpthread).*' ; then
1113- echo " ${dll} depends on above DLLs"
1113+ log WARNING " ${dll} depends on above DLLs"
11141114 good=false
11151115 fi
11161116 done
@@ -1169,6 +1169,7 @@ list_build() {
11691169 eval " package_list=(\$ {${list_name} _${PLATFORM// -/ _} _packages})"
11701170 for pkg in " ${package_list[@]} " ; do
11711171 cd " ${WORK_DIR} "
1172+ log STATUS " Processing target '${pkg} ' for ${PLATFORM} "
11721173 " build_${pkg} "
11731174 done
11741175}
@@ -1602,6 +1603,7 @@ do (
16021603 # Build packages
16031604 for pkg in " ${@ } " ; do
16041605 cd " ${WORK_DIR} "
1606+ log STATUS " Processing target '${pkg} ' for ${PLATFORM} "
16051607 " build_${pkg} "
16061608 done
16071609) done
You can’t perform that action at this time.
0 commit comments