From f070bf3eae25aaed75640b4a660654548ad1340d Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Mon, 5 Feb 2007 19:54:59 +0000 Subject: * fixed two incorrect uses of _tr() git-svn-id: http://svn.openslx.org/svn/openslx/trunk@683 95ad53e4-c205-0410-b2fa-d234c58c8868 --- bin/slxldd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin') 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) { -- cgit v1.2.3-55-g7522