summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorOliver Tappe2007-03-06 16:43:54 +0100
committerOliver Tappe2007-03-06 16:43:54 +0100
commit33c9279cc4e9399693e85c59b4a73e99aa1a14bc (patch)
tree8c06d7fe1b4ac1268150562d8a6f7920243314e7 /bin
parent* fixed typo (diff)
downloadcore-33c9279cc4e9399693e85c59b4a73e99aa1a14bc.tar.gz
core-33c9279cc4e9399693e85c59b4a73e99aa1a14bc.tar.xz
core-33c9279cc4e9399693e85c59b4a73e99aa1a14bc.zip
* fixed bug reported by Dirk: some systems (kubuntu) do not have a ld.so.conf, so we
now support that, too. In that case, we now only work with the trusted folders (/lib and /usr/lib). git-svn-id: http://svn.openslx.org/svn/openslx/trunk@747 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'bin')
-rwxr-xr-xbin/slxldd4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/slxldd b/bin/slxldd
index 7c578b5d..be238a05 100755
--- a/bin/slxldd
+++ b/bin/slxldd
@@ -115,8 +115,8 @@ sub fetchLoaderConfigFile
sub fetchLoaderConfig
{
- if (!-e "$rootPath/etc/ld.so.conf") {
- die _tr("'%s' not found, maybe wrong root-path?\n", "$rootPath/etc/ld.so.conf");
+ if (!-e "$rootPath/etc") {
+ die _tr("'%s'-folder not found, maybe wrong root-path?\n", "$rootPath/etc");
}
fetchLoaderConfigFile("$rootPath/etc/ld.so.conf");