diff options
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rwxr-xr-x | tools/drakx-in-chroot | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index d4be788af..4f2d92ffe 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- drakx-in-chroot: + o fix running with xserver-1.18 + Version 17.5 - 8 december 2015 - more substitution for task-plasma5 diff --git a/tools/drakx-in-chroot b/tools/drakx-in-chroot index 02cf53ce4..4fe2f014c 100755 --- a/tools/drakx-in-chroot +++ b/tools/drakx-in-chroot @@ -142,7 +142,7 @@ if (!-f ($SLASH_LOCATION . $AUTO_INSTALL_ROOTED) && $Xnest_bin && join('', @ARGV if (!$Xnest_pid) { exec $Xnest_bin, $DISPLAY, '-ac', ($Xnest_bin eq 'Xephyr' ? '-screen' : '-geometry'), $resolution or die "Xnest failed\n"; } - $ENV{DISPLAY} = '127.0.0.1' . $DISPLAY; + $ENV{DISPLAY} = $DISPLAY; } if (my $pid = fork()) { |