Commit eb2e0f9c authored by Claes Sjofors's avatar Claes Sjofors

Merge branch 'master' of claes@pwrcvs:/data1/git/pwr

parents cae97b8b a51d1dc4
......@@ -382,6 +382,11 @@ elif [ $OpSys -eq $OpSys_X86_LINUX ]; then
FileTypeStr="`echo $vFileType| cut -f $FileTypeIdx -d ,`"
if [ ! -e $pwr_lib/libpwr_rt.a ]; then
echo "-- Not built for x86_linux"
exit 0;
fi
# Execute build command
Compile$FileTypeStr
exit $gcg_status
......@@ -413,6 +418,11 @@ elif [ $OpSys -eq $OpSys_X86_64_LINUX ]; then
FileTypeStr="`echo $vFileType| cut -f $FileTypeIdx -d ,`"
if [ ! -e $pwr_lib/libpwr_rt.a ]; then
echo "-- Not built for x86_64_linux"
exit 0;
fi
# Execute build command
Compile$FileTypeStr
exit $gcg_status
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment