summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorFelix Endres2007-02-05 23:01:10 +0100
committerFelix Endres2007-02-05 23:01:10 +0100
commit4b3a0aab0627a6dec527b581f8f50a7d94e0db11 (patch)
treeccce24fd146421018235226c476c054786988e97 /bin
parent* added stage1-path as config-option (diff)
downloadcore-4b3a0aab0627a6dec527b581f8f50a7d94e0db11.tar.gz
core-4b3a0aab0627a6dec527b581f8f50a7d94e0db11.tar.xz
core-4b3a0aab0627a6dec527b581f8f50a7d94e0db11.zip
Small Fix: Quotation marks now prevent the path elements to be interpreted as barewords
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@687 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 4fe5af52..0a3fcb1d 100755
--- a/bin/slxldd
+++ b/bin/slxldd
@@ -116,7 +116,7 @@ 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);
+ die _tr("'%s' not found, maybe wrong root-path?\n", "$rootPath/etc/ld.so.conf");
}
fetchLoaderConfigFile("$rootPath/etc/ld.so.conf");
@@ -280,4 +280,4 @@ Prints the version and exits.
=back
-=cut \ No newline at end of file
+=cut