summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorOliver Tappe2007-10-05 21:07:37 +0200
committerOliver Tappe2007-10-05 21:07:37 +0200
commit5c9fd692456fea66419bb2eab9bc7f1f29631053 (patch)
tree61e4d7f2401aad1be747d204b18da435c45ddb77 /bin
parentanother regexp bug :( (diff)
downloadcore-5c9fd692456fea66419bb2eab9bc7f1f29631053.tar.gz
core-5c9fd692456fea66419bb2eab9bc7f1f29631053.tar.xz
core-5c9fd692456fea66419bb2eab9bc7f1f29631053.zip
* avoid warning if ld.so.conf doesn't exist (seems to be the case on
debian-3.1) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1370 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'bin')
-rwxr-xr-xbin/slxldd1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/slxldd b/bin/slxldd
index 419d5a0f..5c59c093 100755
--- a/bin/slxldd
+++ b/bin/slxldd
@@ -105,6 +105,7 @@ sub fetchLoaderConfigFile
{
my $ldConfFile = shift;
+ return unless -e $ldConfFile;
my $ldconfFH;
if (!open($ldconfFH, '<', $ldConfFile)) {
warn(_tr("unable to open file '%s' (%s)", $ldConfFile, $!));