summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-xtools/XFdrake3
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index a5b04d5..4660b37 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,6 @@
- do not run setxkbmap during text install
+- do not generate a xorg.conf symlink pointing to nothing if
+ xorg.conf.standard exists
- handle drivers needing SSE
- handle drivers needing firmware (mga#1471, mga#3421)
diff --git a/tools/XFdrake b/tools/XFdrake
index 9805ecd..3628ff2 100755
--- a/tools/XFdrake
+++ b/tools/XFdrake
@@ -78,10 +78,11 @@ $configure_this ||= $::auto ? 'auto_install' : 'everything';
sub check_XFree {
my ($in) = @_;
+ # FIXME: drop this very old useless block in mga3
#- set the standard configuration
{
my $f = "/etc/X11/xorg.conf";
- symlinkf("$_.standard", $f) if -l $f && -e "$f.standard";
+ symlinkf("xorg.conf.standard", $f) if -l $f && -e "$f.standard";
}
$in->do_pkgs->ensure_are_installed(['task-x11']) or $in->exit;