diff options
-rwxr-xr-x | edit-urpm-sources.pl | 6 | ||||
-rwxr-xr-x | rpmdrake | 4 |
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; @@ -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'; |