Ignore:
Timestamp:
Sep 18, 2002, 2:36:56 PM (22 years ago)
Author:
ahuck
Message:

minor enhancements to buildall.pl,
buildlist contains the src.rpms as well (without version number),
unpack_srpm.sh accepts *.srpm as parameter and unpack in directories
omitting the version number

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/technical/common/build/buildall.pl

    r611 r612  
    22# automatisches buildskript fuer smartclient
    33# liest die konfiguration aus der mit -b übergebenen Datei
    4 # $Id: buildall.pl,v 1.9 2002/09/17 10:03:24 pstorz Exp $
     4# $Id: buildall.pl,v 1.10 2002/09/18 12:36:56 ahuck Exp $
    55# Philipp Storz, SuSE Linux AG
    66# pstorz@suse.de
     
    5959    write;
    6060  }
    61 print "\n\n\n ATTENTION: the srpms from the directory external/SuSE  must be built before!\n";
    62 print "to build srpms, goto dir external/SuSE, execute build_srpms.sh script!\n\n\n";
    63 print 'Are the srpms built and all options OK? (y/n)';
     61print "\n\n\n ATTENTION: the srpms from the directory external/SuSE and external/cpan must have been extracted before!\n";
     62print "To build srpms execute the extract_srpms.sh script in either directory!\n\n\n";
     63print 'Are all the srpms extracted and all options OK? (y/n)';
    6464
    6565$answer =<STDIN>;
     
    121121 if ($retval == 0)
    122122   {
    123      $ArrayofBuilds[$i][3]= "SUCESS $ArrayofBuilds[$i][0] :";
     123     $ArrayofBuilds[$i][3]= "SUCESS $ArrayofBuilds[$i][0]: OK";
    124124     print"******                                                      ******\n";
    125      print"******   building of $ArrayofBuilds[$i][0] SUCCESSFULL:     \n" ;
     125     print"******   building of $ArrayofBuilds[$i][0]: OK                    \n" ;
    126126     print"******                                                      ******\n";
    127127   }
    128128 else
    129129   {
    130      $ArrayofBuilds[$i][3]="ERROR  $ArrayofBuilds[$i][0] UNSUCCESSFULL:\n";
     130     $ArrayofBuilds[$i][3]="ERROR  $ArrayofBuilds[$i][0]: *FAILED*\n";
    131131     print"******                                                      ******\n";
    132      print"\n\n\nERROR: building of $ArrayofBuilds[$i][0] UNSUCCESSFULL \n";
     132     print"\n\n\nERROR: building of $ArrayofBuilds[$i][0]: *FAILED*\n";
    133133     print"******                                                      ******\n";
    134134   }
Note: See TracChangeset for help on using the changeset viewer.