IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11953


Ignore:
Timestamp:
Feb 20, 2007, 4:54:33 PM (19 years ago)
Author:
eugene
Message:

fixed weird error with module checks: prior modules invalidate later tests

Location:
trunk/psconfig
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psconfig/ckperlmods

    r11940 r11953  
    4343
    4444print "prefix: $prefix\n";
     45print "perl5lib: $perl5lib\n";
     46print "PERL5LIB: $ENV{'PERL5LIB'}\n";
    4547
    4648foreach $line (@list) {
     
    5153    ($N, $module, $tarball, $prompts) = split (" ", $line);
    5254   
    53     if (eval "use $module; 1") {
     55    system ("ckmodule.pl $module");
     56    if ($? == 0) {
    5457        # print "$module: found\n";
    5558        next;
  • trunk/psconfig/mkbuild

    r11739 r11953  
    3434    }
    3535    if ($ARGV[0] eq "-start") {
    36         $stop = $ARGV[1];
     36        $start = $ARGV[1];
    3737        shift; shift; next;
    3838    }
     
    8787    for ($i = 0; $i < @cvsname; $i++) {
    8888        if (($start ne "") && ($start ne $cvsname[$i])) { next; }
     89        $start = "";
     90
    8991        ($do_tag, $do_build, $do_package, $do_update) = $mode[$i] =~ m|(\S)(\S)(\S)(\S)|;
    9092        if ($do_build eq "N") { next; }
     
    102104 
    103105        if (-e "Build.PL") {
    104             print $PERL5LIB;
    105 
    106106            vsystem ("$psperlbuild");
    107107            if ($?) { &failure($cvsname[$i], "failure in perl Build.PL"); }
     
    150150        vsystem ("make install");
    151151        if ($?) { &failure($cvsname[$i], "failure in make install"); }
     152
     153        print "*** done with $cvsname[$i] ***\n";
    152154
    153155      success:
  • trunk/psconfig/tagsets/ipp-extperl.dst

    r11941 r11953  
    1717  15    Digest                         Digest-1.15.tar.gz                       
    1818  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz             
     19  17    version                        version-0.70.tar.gz
    1920  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz               
    2021  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz     
Note: See TracChangeset for help on using the changeset viewer.