summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r--perl-install/install_steps_gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index a77333b21..d3b3954b4 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -199,7 +199,7 @@ sub new($$) {
my $dir = "/usr/X11R6/bin";
unless (-x "$dir/XF86_$_") {
unlink $_ foreach glob_("$dir/XF86_*");
- local *F; open F, ">$dir/XF86_$_" or die '';
+ local *F; open F, ">$dir/XF86_$_" or die "failed to write server: $!";
local $/ = \ (16 * 1024);
my $f = install_any::getFile("$dir/XF86_$_") or next;
syswrite F, $_ foreach <$f>;