diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-09-28 16:01:10 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-09-28 16:01:10 +0000 |
commit | 4f5a7d13498f61d194919bbde3b4940bef69299e (patch) | |
tree | a1af6e2a791da0a433751fd300efbcf03164c03b | |
parent | 432dee12920a29942729f808edd2df9d569a500e (diff) | |
download | rpmtools-4f5a7d13498f61d194919bbde3b4940bef69299e.tar rpmtools-4f5a7d13498f61d194919bbde3b4940bef69299e.tar.gz rpmtools-4f5a7d13498f61d194919bbde3b4940bef69299e.tar.bz2 rpmtools-4f5a7d13498f61d194919bbde3b4940bef69299e.tar.xz rpmtools-4f5a7d13498f61d194919bbde3b4940bef69299e.zip |
Add in Distribconf modules
-rw-r--r-- | Distribconf.pm | 7 | ||||
-rw-r--r-- | Distribconf/Build.pm | 8 |
2 files changed, 10 insertions, 5 deletions
diff --git a/Distribconf.pm b/Distribconf.pm index 0552d36..c20c600 100644 --- a/Distribconf.pm +++ b/Distribconf.pm @@ -13,11 +13,11 @@ ##- You should have received a copy of the GNU General Public License ##- along with this program; if not, write to the Free Software ##- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# $Id$ package Distribconf; +(our $VERSION) = q$Id$ =~ /(\d+\.\d+)/; + =head1 NAME Distribconf - perl module to get config from a Mandriva Linux distribution tree @@ -420,6 +420,9 @@ Thanks to Sylvie Terjan <erinmargault@mandriva.org> for the spell checking. =head1 ChangeLog $Log$ + Revision 1.12 2005/09/28 16:01:10 rgarciasuarez + Add in Distribconf modules + Revision 1.11 2005/09/28 08:50:14 rgarciasuarez Documentation nits. Fix some fatal error messages. diff --git a/Distribconf/Build.pm b/Distribconf/Build.pm index 46e1327..f5bc849 100644 --- a/Distribconf/Build.pm +++ b/Distribconf/Build.pm @@ -31,9 +31,8 @@ use warnings; use Distribconf; -use vars qw(@ISA); -@ISA = qw(Distribconf); - +our @ISA = qw(Distribconf); +our $VERSION = $Distribconf::VERSION; =head2 new(root_of_distrib) @@ -233,6 +232,9 @@ Thanks to Sylvie Terjan <erinmargault@mandriva.org> for the spell checking. =head1 ChangeLog $Log$ + Revision 1.4 2005/09/28 16:01:10 rgarciasuarez + Add in Distribconf modules + Revision 1.3 2005/09/06 19:46:17 othauvin - s/mandrake/mandriva/ |