summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-06-10 08:01:45 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-06-10 08:01:45 +0000
commita1509a98924fc99200089c266000c8e9c3733fa9 (patch)
tree5bbcfe0c7ad932a47e57213bf5318345fc1854a1
parent19d1383b38b59a084509815cf848c5ea9c05deb6 (diff)
downloaddrakx-backup-do-not-use-a1509a98924fc99200089c266000c8e9c3733fa9.tar
drakx-backup-do-not-use-a1509a98924fc99200089c266000c8e9c3733fa9.tar.gz
drakx-backup-do-not-use-a1509a98924fc99200089c266000c8e9c3733fa9.tar.bz2
drakx-backup-do-not-use-a1509a98924fc99200089c266000c8e9c3733fa9.tar.xz
drakx-backup-do-not-use-a1509a98924fc99200089c266000c8e9c3733fa9.zip
class_discard is a bad idea, now unused, so drop it
-rw-r--r--perl-install/class_discard.pm11
-rw-r--r--perl-install/standalone.pm2
2 files changed, 1 insertions, 12 deletions
diff --git a/perl-install/class_discard.pm b/perl-install/class_discard.pm
deleted file mode 100644
index 6ca677e9d..000000000
--- a/perl-install/class_discard.pm
+++ /dev/null
@@ -1,11 +0,0 @@
-package class_discard; # $Id$
-
-use log;
-
-sub new { bless {}, "class_discard" }
-
-sub AUTOLOAD {
- log::l("class_discard: $AUTOLOAD called at ", caller, ", params ", join(', ', @_));
-}
-
-1;
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index c9338d484..e0e0b056f 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -179,7 +179,7 @@ sub explanations { log::explanations("@_") }
our @common_functs = qw(renamef linkf symlinkf output substInFile mkdir_p rm_rf cp_af touch setVarsInSh setExportedVarsInSh setExportedVarsInCsh update_gnomekderc);
our @builtin_functs = qw(chmod chown __exit exit unlink link symlink rename system);
-our @drakx_modules = qw(Xconfig::card Xconfig::default Xconfig::main Xconfig::monitor Xconfig::parse Xconfig::proprietary Xconfig::resolution_and_depth Xconfig::screen Xconfig::test Xconfig::various Xconfig::xfree any bootloader bootlook c class_discard commands crypto detect_devices devices diskdrake diskdrake::hd_gtk diskdrake::interactive diskdrake::removable diskdrake::removable_gtk diskdrake::smbnfs_gtk fs fsedit http keyboard lang log loopback lvm modules::parameters modules mouse my_gtk network network::adsl network::ethernet network::isdn_consts network::isdn network::modem network::netconnect network::network network::nfs network::smb network::tools partition_table partition_table_bsd partition_table::dos partition_table::empty partition_table::gpt partition_table::mac partition_table::raw partition_table::sun printer printerdrake proxy raid run_program scanner services steps swap timezone network::drakfirewall network::shorewall);
+our @drakx_modules = qw(Xconfig::card Xconfig::default Xconfig::main Xconfig::monitor Xconfig::parse Xconfig::proprietary Xconfig::resolution_and_depth Xconfig::screen Xconfig::test Xconfig::various Xconfig::xfree any bootloader bootlook c commands crypto detect_devices devices diskdrake diskdrake::hd_gtk diskdrake::interactive diskdrake::removable diskdrake::removable_gtk diskdrake::smbnfs_gtk fs fsedit http keyboard lang log loopback lvm modules::parameters modules mouse my_gtk network network::adsl network::ethernet network::isdn_consts network::isdn network::modem network::netconnect network::network network::nfs network::smb network::tools partition_table partition_table_bsd partition_table::dos partition_table::empty partition_table::gpt partition_table::mac partition_table::raw partition_table::sun printer printerdrake proxy raid run_program scanner services steps swap timezone network::drakfirewall network::shorewall);
$SIG{SEGV} = sub { my $progname = $0; $progname =~ s|.*/||; exec("drakbug --incident $progname") };