Changeset 25 for palm


Ignore:
Timestamp:
Feb 28, 2007 10:04:51 AM (17 years ago)
Author:
raasch
Message:

small changes to mbuild

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/mbuild

    r24 r25  
    954954    column1="make depository:"; column2=$remote_md
    955955    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
    956961    column1="username:"; column2=$remote_username
    957962    printf "| $column1$column2 | \n"
     
    12271232
    12281233
     1234
     1235
    12291236             # GLEICHE AKTIONEN FUER DIE UTILITY-PROGRAMME DURCHFUEHREN
    12301237             # AKTUELLE QUELLTEXTVERSION INS REMOTE-QUELLTEXTVERZEICHNIS KOPIEREN
     
    12751282             then
    12761283
    1277                 ssh  ${remote_username}@${remote_addres}  "cd ${remote_ud}; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" 2>&1 | tee ${remote_host}_last_make_protokoll
     1284                ssh  ${remote_username}@${remote_addres}  "cd ${remote_ud}; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR"
    12781285
    12791286             elif [[ $remote_host = ibmb  ||  $remote_host = ibmh ]]
    12801287             then
    12811288
    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_protokoll
     1289                print "export OBJECT_MODE=64; cd ${remote_ud}; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" | ssh  ${remote_username}@${remote_addres}
    12831290
    12841291             elif [[ $remote_host = lctit ]]
     
    12971304             fi
    12981305
    1299              if [[ $(grep -c MAKE_ERROR ${remote_host}_last_make_protokoll) != 0 ]]
    1300              then
    1301                 printf "\a\n  +++ error(s) occurred during compiling or linking on host \"$remote_host\" "
    1302                 if [[ $silent = false ]]
    1303                 then
    1304                    answer=dummy
    1305                    printf "\n"
    1306                    while [[ "$answer" != c  &&  "$answer" != k ]]
    1307                    do
    1308                       printf "  >>> continue / list errors / kill mbuild (c/l/k) ? "
    1309                       read  answer
    1310                       if [[ "$answer" = l ]]
    1311                       then
    1312                          more ${remote_host}_last_make_protokoll
    1313                       fi
    1314                    done
    1315                    if [[ $answer = k ]]
    1316                    then
    1317                       locat=user_abort; exit
    1318                    fi
    1319                 fi
    1320              fi
    13211306          fi    # ENDE UEBERSETZUNG DER UTILITY-PROGRAMME
    13221307
Note: See TracChangeset for help on using the changeset viewer.