summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/XFdrake
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone/XFdrake')
-rwxr-xr-xperl-install/standalone/XFdrake4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake
index 9c0bcfbab..5b82724a7 100755
--- a/perl-install/standalone/XFdrake
+++ b/perl-install/standalone/XFdrake
@@ -159,10 +159,10 @@ sub ask_for_X_restart {
open STDOUT, ">/dev/null";
open STDERR, ">&STDERR";
c::setsid();
- exec qw(perl -e), q{
+ exec qw(perl -e), q(
my ($wm, $pid) = @ARGV;
my $nb;
for ($nb = 30; $nb && -e "/proc/$pid"; $nb--) { sleep 1 }
system("killall X") if $nb;
- }, $wm, $pid;
+ ), $wm, $pid;
}