From 5ed858ef18fb2f375b832ec0a9a252d7be282db5 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Wed, 27 Feb 2008 22:58:49 +0000 Subject: * fixed incorrect use of quotes (spotted by Dirk) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1581 95ad53e4-c205-0410-b2fa-d234c58c8868 --- initramfs/OpenSLX/MakeInitRamFS/Engine.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'initramfs') diff --git a/initramfs/OpenSLX/MakeInitRamFS/Engine.pm b/initramfs/OpenSLX/MakeInitRamFS/Engine.pm index 577cb168..9a20a882 100644 --- a/initramfs/OpenSLX/MakeInitRamFS/Engine.pm +++ b/initramfs/OpenSLX/MakeInitRamFS/Engine.pm @@ -467,7 +467,7 @@ sub _copyRequiredFSTools foreach my $tool (@{$self->{'fs-tools'}}) { my $toolPath = $self->_findBinary($tool); if (!$toolPath) { - die _tr('filesystem-tool "$tool" is not available, giving up!'); + die _tr('filesystem-tool "%s" is not available, giving up!', $tool); } $self->addCMD("cp -p $toolPath $self->{'build-path'}/bin"); $self->_addRequiredLibsFor($toolPath); @@ -490,7 +490,9 @@ sub _copyRequiredLayeredFSTools foreach my $tool (@tools) { my $toolPath = $self->_findBinary($tool); if (!$toolPath) { - die _tr('layered-fs-tool "$tool" is not available, giving up!'); + die _tr( + 'layered-fs-tool "%s" is not available, giving up!', $tool + ); } $self->addCMD("cp -p $toolPath $self->{'build-path'}/bin"); $self->_addRequiredLibsFor($toolPath); -- cgit v1.2.3-55-g7522