summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-10-05 17:43:40 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-10-05 17:43:40 +0000
commite95828c87cb27490beebf358500b4ac7eb0e5c6c (patch)
tree9294fc22bfa8019229785ad9d64c36688fb18f18 /perl-install/Xconfig
parent837e99171e20798228ce71d01cfe5bea971a222c (diff)
downloaddrakx-backup-do-not-use-e95828c87cb27490beebf358500b4ac7eb0e5c6c.tar
drakx-backup-do-not-use-e95828c87cb27490beebf358500b4ac7eb0e5c6c.tar.gz
drakx-backup-do-not-use-e95828c87cb27490beebf358500b4ac7eb0e5c6c.tar.bz2
drakx-backup-do-not-use-e95828c87cb27490beebf358500b4ac7eb0e5c6c.tar.xz
drakx-backup-do-not-use-e95828c87cb27490beebf358500b4ac7eb0e5c6c.zip
don't modify /etc/ld.so.conf.d/{nvidia,ati}.conf if file does not exist
(otherwise at package install time, one gets a .rpmnew)
Diffstat (limited to 'perl-install/Xconfig')
-rw-r--r--perl-install/Xconfig/card.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/card.pm b/perl-install/Xconfig/card.pm
index 4edb0d69a..92ef1b89d 100644
--- a/perl-install/Xconfig/card.pm
+++ b/perl-install/Xconfig/card.pm
@@ -478,7 +478,7 @@ sub libgl_config {
$_ = "$comment$s\n";
$need_to_run_ldconfig ||= !$commented;
}
- } "$dir/$file";
+ } "$dir/$file" if -e "$dir/$file";
}
if ($::isStandalone && $need_to_run_ldconfig) {
log::explanations("ldconfig will be run because the GL library was " . ($wanted ? 'enabled' : 'disabled'));