summaryrefslogtreecommitdiffstats
path: root/initramfs
diff options
context:
space:
mode:
authorOliver Tappe2008-02-27 23:58:49 +0100
committerOliver Tappe2008-02-27 23:58:49 +0100
commit5ed858ef18fb2f375b832ec0a9a252d7be282db5 (patch)
treeafde13dd1659bbc82e0f1bf94c61fc96d4216e69 /initramfs
parent* OSPlugin::Engine now provides a real support interface for plugins, which (diff)
downloadcore-5ed858ef18fb2f375b832ec0a9a252d7be282db5.tar.gz
core-5ed858ef18fb2f375b832ec0a9a252d7be282db5.tar.xz
core-5ed858ef18fb2f375b832ec0a9a252d7be282db5.zip
* fixed incorrect use of quotes (spotted by Dirk)
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1581 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs')
-rw-r--r--initramfs/OpenSLX/MakeInitRamFS/Engine.pm6
1 files changed, 4 insertions, 2 deletions
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);