Changeset 25
- Timestamp:
- Feb 28, 2007 10:04:51 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mbuild
r24 r25 954 954 column1="make depository:"; column2=$remote_md 955 955 printf "| $column1$column2 | \n" 956 if [[ $compile_utility_programs = true ]] 957 then 958 column1="utility directory:"; column2=$remote_ud 959 printf "| $column1$column2 | \n" 960 fi 956 961 column1="username:"; column2=$remote_username 957 962 printf "| $column1$column2 | \n" … … 1227 1232 1228 1233 1234 1235 1229 1236 # GLEICHE AKTIONEN FUER DIE UTILITY-PROGRAMME DURCHFUEHREN 1230 1237 # AKTUELLE QUELLTEXTVERSION INS REMOTE-QUELLTEXTVERZEICHNIS KOPIEREN … … 1275 1282 then 1276 1283 1277 ssh ${remote_username}@${remote_addres} "cd ${remote_ud}; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" 2>&1 | tee ${remote_host}_last_make_protokoll1284 ssh ${remote_username}@${remote_addres} "cd ${remote_ud}; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" 1278 1285 1279 1286 elif [[ $remote_host = ibmb || $remote_host = ibmh ]] 1280 1287 then 1281 1288 1282 print "export OBJECT_MODE=64; cd ${remote_ud}; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" | ssh ${remote_username}@${remote_addres} 2>&1 | tee ${remote_host}_last_make_protokoll1289 print "export OBJECT_MODE=64; cd ${remote_ud}; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" | ssh ${remote_username}@${remote_addres} 1283 1290 1284 1291 elif [[ $remote_host = lctit ]] … … 1297 1304 fi 1298 1305 1299 if [[ $(grep -c MAKE_ERROR ${remote_host}_last_make_protokoll) != 0 ]]1300 then1301 printf "\a\n +++ error(s) occurred during compiling or linking on host \"$remote_host\" "1302 if [[ $silent = false ]]1303 then1304 answer=dummy1305 printf "\n"1306 while [[ "$answer" != c && "$answer" != k ]]1307 do1308 printf " >>> continue / list errors / kill mbuild (c/l/k) ? "1309 read answer1310 if [[ "$answer" = l ]]1311 then1312 more ${remote_host}_last_make_protokoll1313 fi1314 done1315 if [[ $answer = k ]]1316 then1317 locat=user_abort; exit1318 fi1319 fi1320 fi1321 1306 fi # ENDE UEBERSETZUNG DER UTILITY-PROGRAMME 1322 1307
Note: See TracChangeset
for help on using the changeset viewer.