aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xedit-urpm-sources.pl6
-rwxr-xr-xrpmdrake4
2 files changed, 8 insertions, 2 deletions
diff --git a/edit-urpm-sources.pl b/edit-urpm-sources.pl
index 8731bfe2..400e3d8c 100755
--- a/edit-urpm-sources.pl
+++ b/edit-urpm-sources.pl
@@ -20,9 +20,13 @@
#
# $Id$
-$> and (exec {'consolehelper'} $0, @ARGV or die "consolehelper missing");
use strict;
+use lib qw(/usr/lib/libDrakX);
+use common;
+
+require_root_capability();
+
use rpmdrake;
$::isStandalone = 1;
diff --git a/rpmdrake b/rpmdrake
index daa7202c..319dc846 100755
--- a/rpmdrake
+++ b/rpmdrake
@@ -31,14 +31,16 @@ BEGIN { #- we want to run this code before the Gtk->init of the use-my_gtk
", $basename->($0);
exit 0;
};
- $> and (exec { 'consolehelper' } $0, @ARGV or die "consolehelper missing");
}
use strict;
use vars qw($MODE %options);
+use lib qw(/usr/lib/libDrakX);
+use common;
use rpmdrake;
+require_root_capability();
$MODE = 'install';
$0 =~ m|/rpmdrake-remove$| and $MODE = 'remove';