diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-03-07 15:27:25 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-03-07 15:27:25 +0000 |
commit | 65ba8f915ed27b071697bd8315ef23f0d779611c (patch) | |
tree | c43e75b7fa5d37206cc37a0d8cd05fb72455be45 | |
parent | 9542bbe2b83cea6d14f4393fa3e0e8517d06fb81 (diff) | |
download | drakx-65ba8f915ed27b071697bd8315ef23f0d779611c.tar drakx-65ba8f915ed27b071697bd8315ef23f0d779611c.tar.gz drakx-65ba8f915ed27b071697bd8315ef23f0d779611c.tar.bz2 drakx-65ba8f915ed27b071697bd8315ef23f0d779611c.tar.xz drakx-65ba8f915ed27b071697bd8315ef23f0d779611c.zip |
don't create (potentially broken) ld.so.conf.d files for X drivers
-rw-r--r-- | live/One/2006.0/config/patch-2006-live.pl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/live/One/2006.0/config/patch-2006-live.pl b/live/One/2006.0/config/patch-2006-live.pl index df55f4792..37b13f6fd 100644 --- a/live/One/2006.0/config/patch-2006-live.pl +++ b/live/One/2006.0/config/patch-2006-live.pl @@ -191,3 +191,11 @@ undef *write_zeroconf; require services; services::set_status('tmdns', $net->{zeroconf}{hostname}, $::isInstall); }; + +use Xconfig::card; +package Xconfig::card; + +#- don't create (potentially broken) ld.so.conf.d files for X drivers +#- anyway we don't want to configure it for the live system +undef *libgl_config; +*libgl_config = sub {}; |