summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Packager/rpm.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-05-13 21:01:39 +0200
committerOliver Tappe2007-05-13 21:01:39 +0200
commit20ec9098cb5fc91e79fc5e4c4a161dc211f91983 (patch)
tree11eb953f16c599d1fbd76e467bef9fe816416d3d /installer/OpenSLX/OSSetup/Packager/rpm.pm
parent* added empty outlines for Debian-3.1 and Debian-4.0 to repository (diff)
downloadcore-20ec9098cb5fc91e79fc5e4c4a161dc211f91983.tar.gz
core-20ec9098cb5fc91e79fc5e4c4a161dc211f91983.tar.xz
core-20ec9098cb5fc91e79fc5e4c4a161dc211f91983.zip
* simplified declaration of base classes via 'use base'
* simplified checking for correct API-version of modules git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1072 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Packager/rpm.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Packager/rpm.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/installer/OpenSLX/OSSetup/Packager/rpm.pm b/installer/OpenSLX/OSSetup/Packager/rpm.pm
index 63c49e47..d689f160 100644
--- a/installer/OpenSLX/OSSetup/Packager/rpm.pm
+++ b/installer/OpenSLX/OSSetup/Packager/rpm.pm
@@ -13,14 +13,14 @@
# -----------------------------------------------------------------------------
package OpenSLX::OSSetup::Packager::rpm;
-use vars qw(@ISA $VERSION);
-@ISA = ('OpenSLX::OSSetup::Packager::Base');
+use vars qw($VERSION);
+use base qw(OpenSLX::OSSetup::Packager::Base);
$VERSION = 1.01; # API-version . implementation-version
use strict;
use Carp;
use OpenSLX::Basics;
-use OpenSLX::OSSetup::Packager::Base 1.01;
+use OpenSLX::OSSetup::Packager::Base 1;
################################################################################
### implementation