summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorOliver Tappe2007-02-05 20:54:59 +0100
committerOliver Tappe2007-02-05 20:54:59 +0100
commitf070bf3eae25aaed75640b4a660654548ad1340d (patch)
tree2fabafe2ebbe087e83dd2ade38199c145cfb5b9b /bin
parent* added check against scalar variables inside of the strings, as this causes (diff)
downloadcore-f070bf3eae25aaed75640b4a660654548ad1340d.tar.gz
core-f070bf3eae25aaed75640b4a660654548ad1340d.tar.xz
core-f070bf3eae25aaed75640b4a660654548ad1340d.zip
* fixed two incorrect uses of _tr()
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@683 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'bin')
-rwxr-xr-xbin/slxldd5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/slxldd b/bin/slxldd
index fb16c9b6..4fe5af52 100755
--- a/bin/slxldd
+++ b/bin/slxldd
@@ -116,7 +116,7 @@ sub fetchLoaderConfigFile
sub fetchLoaderConfig
{
if (!-e "$rootPath/etc/ld.so.conf") {
- die _tr("$rootPath/etc/ld.so.conf not found, maybe wrong root-path?\n");
+ die _tr("'%s' not found, maybe wrong root-path?\n", $rootPath/etc/ld.so.conf);
}
fetchLoaderConfigFile("$rootPath/etc/ld.so.conf");
@@ -148,7 +148,8 @@ sub addLib
# have library matching name, now check if the platform is ok, too:
my $libFileInfo = `file --dereference $folder/$lib 2>/dev/null`;
if ($?) {
- die _tr("unable to fetch file info for $folder/$lib, giving up!\n");
+ die _tr("unable to fetch file info for '%s', giving up!\n",
+ $folder/$lib);
}
my $libBitwidth = ($libFileInfo =~ m[64-bit]i) ? 64 : 32;
if ($bitwidth != $libBitwidth) {