Ignore:
Timestamp:
Jan 11, 2011, 1:14:38 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Most modules now have a VERSION declared
  • Moulde Version.pm move to pb-modules due to that
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/lib/ProjectBuilder/Distribution.pm

    r1137 r1148  
    1010use strict;
    1111use Data::Dumper;
     12use ProjectBuilder::Version;
    1213use ProjectBuilder::Base;
    1314use ProjectBuilder::Conf;
     
    1516use File::Copy;
    1617
     18# Global vars
    1719# Inherit from the "Exporter" module which handles exporting functions.
    1820 
     21use vars qw($VERSION @ISA @EXPORT);
    1922use Exporter;
    2023 
     
    2427our @ISA = qw(Exporter);
    2528our @EXPORT = qw(pb_distro_conffile pb_distro_init pb_distro_get pb_distro_getlsb pb_distro_installdeps pb_distro_getdeps pb_distro_only_deps_needed pb_distro_setuprepo pb_distro_setuposrepo pb_distro_get_param);
     29$VERSION = "$ProjectBuilder::Version::VERSION";
    2630
    2731=pod
Note: See TracChangeset for help on using the changeset viewer.