summaryrefslogtreecommitdiffstats
path: root/installer/slxos-export
diff options
context:
space:
mode:
authorOliver Tappe2007-04-01 14:42:12 +0200
committerOliver Tappe2007-04-01 14:42:12 +0200
commit44369cf1c57a006921c89a2cede8d0ba87b1d659 (patch)
tree6816fd8a9a165fa1b0a305b8ee7f5786ce3e1a07 /installer/slxos-export
parentRemove superfluous and empty test file. (diff)
downloadcore-44369cf1c57a006921c89a2cede8d0ba87b1d659.tar.gz
core-44369cf1c57a006921c89a2cede8d0ba87b1d659.tar.xz
core-44369cf1c57a006921c89a2cede8d0ba87b1d659.zip
* circumvent dubious problem with perldoc in combination with UTF-8 that
leads to strange dashes and single-quotes being used, in result making it impossible to copy'n'paste examples git-svn-id: http://svn.openslx.org/svn/openslx/trunk@842 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/slxos-export')
-rwxr-xr-xinstaller/slxos-export7
1 files changed, 6 insertions, 1 deletions
diff --git a/installer/slxos-export b/installer/slxos-export
index 30045ff7..ad8d98a3 100755
--- a/installer/slxos-export
+++ b/installer/slxos-export
@@ -48,7 +48,12 @@ GetOptions(
'version' => \$versionReq,
) or pod2usage(2);
pod2usage(-msg => $abstract, -verbose => 0, -exitval => 1) if $helpReq;
-pod2usage(-verbose => 2) if $manReq;
+if ($manReq) {
+ $ENV{LANG} = 'en_EN';
+ # avoid dubious problem with perldoc in combination with UTF-8 that
+ # leads to strange dashes and single-quotes being used
+ pod2usage(-verbose => 2)
+}
if ($versionReq) {
system('slxversion');
exit 1;