Changeset 176 in ProjectBuilder


Ignore:
Timestamp:
Oct 7, 2007, 1:04:42 PM (17 years ago)
Author:
Bruno Cornec
Message:

Add pbdistrocheck do the set of tools
perl 5.8.0 only is required (instead of 5.8.4) if AppConfig is provided (to be checked ?)

Location:
devel/pb
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • devel/pb/Makefile.PL

    r91 r176  
    1 use 5.008004;
     1use 5.008000;
    22use ExtUtils::MakeMaker;
    33
     
    1616    #ABSTRACT_FROM => 'bin/pb',   # retrieve abstract from module
    1717    AUTHOR        => 'Bruno Cornec <bruno#project-builder.org>',
    18     EXE_FILES     => [ qw( bin/pb bin/pbg bin/pbvi ) ],
     18    EXE_FILES     => [ qw( bin/pb bin/pbg bin/pbvi bin/pbdistrocheck ) ],
    1919);
  • devel/pb/contrib/pbsetupqemu

    r175 r176  
    3333        mkdir "/home";
    3434    }
    35     system "useradd pb -d /home/pb";
     35    system "groupadd pb";
     36    system "useradd pb -g pb -d /home/pb";
    3637}
    3738
     
    7475
    7576my ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init();
     77print "distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf))."\n";
    7678
    7779# Get and install pb
Note: See TracChangeset for help on using the changeset viewer.