summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/slxldd4
-rwxr-xr-xconfig-db/slxconfig2
-rwxr-xr-xinstaller/slxos-export2
-rwxr-xr-xinstaller/slxos-setup2
4 files changed, 5 insertions, 5 deletions
diff --git a/bin/slxldd b/bin/slxldd
index be238a05..426e9f90 100755
--- a/bin/slxldd
+++ b/bin/slxldd
@@ -178,7 +178,7 @@ sub addLibsForBinary
print STDERR _tr("analyzing '%s'...\n", $binary) if $verbose;
my $fileInfo = `file --dereference --brief --mime $binary 2>/dev/null`;
if ($?) {
- die _tr("unable to fetch file info for $binary, giving up!\n");
+ die _tr("unable to fetch file info for '%s', giving up!\n", $binary);
}
chomp $fileInfo;
print STDERR _tr("\tinfo is: '%s'...\n", $fileInfo) if $verbose;
@@ -192,7 +192,7 @@ sub addLibsForBinary
# bitwidth:
$fileInfo = `file --dereference --brief $binary 2>/dev/null`;
if ($?) {
- die _tr("unable to fetch file info for $binary, giving up!\n");
+ die _tr("unable to fetch file info for '%s', giving up!\n", $binary);
}
chomp $fileInfo;
print STDERR _tr("\tinfo is: '%s'...\n", $fileInfo) if $verbose;
diff --git a/config-db/slxconfig b/config-db/slxconfig
index 2854cabe..dae5a95a 100755
--- a/config-db/slxconfig
+++ b/config-db/slxconfig
@@ -93,7 +93,7 @@ if ($action =~ m[^add-system$]i) {
list-vendoros
remove-client
remove-system
-Try '$0 --help' for more info.\n");
+Try '%s --help' for more info.\n", $0);
}
$openslxDB->disconnect();
diff --git a/installer/slxos-export b/installer/slxos-export
index cd9f763a..21db393f 100755
--- a/installer/slxos-export
+++ b/installer/slxos-export
@@ -100,7 +100,7 @@ if ($action =~ m[^list-ex]i) {
list-exported
list-installed
list-types
-Try '$0 --help' for more info.\n");
+Try '%s --help' for more info.\n", $0);
}
__END__
diff --git a/installer/slxos-setup b/installer/slxos-setup
index 9a14921d..b120cfc6 100755
--- a/installer/slxos-setup
+++ b/installer/slxos-setup
@@ -138,7 +138,7 @@ if ($action =~ m[import]i) {
list-supported
list-installed
update
-Try '$0 --help' for more info.\n");
+Try '%s --help' for more info.\n", $0);
}
__END__