From ba35d85c9bb185ffff6ff51c155bc4af7c100cfa Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 24 Mar 2012 06:37:22 +0000 Subject: (check_XFree) fix a very ancient bug where we would symlink xorg.conf to nothing if xorg.conf.standard exists (issue introduced by pixel in r242888 on Mon Jun 9 2008: "drop support for /etc/X11/XF86Config (replaced by xorg.conf for some time now)") (spot by perl_checker) --- tools/XFdrake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools') 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; -- cgit v1.2.1