diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2003-05-19 21:55:18 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2003-05-19 21:55:18 +0000 |
commit | fd1384b659c40923106b1eabf3b0ca01d1383b07 (patch) | |
tree | 34faa3e443099b38361714ed3cb94142ea7f598f /x11-fm/rox-filer/files | |
parent | Remove PKGNAMEPREFIX since it is redundant (diff) |
Add default CHARSET fallback (iso-8859-1).
Notes
Notes:
svn path=/head/; revision=81493
Diffstat (limited to 'x11-fm/rox-filer/files')
-rw-r--r-- | x11-fm/rox-filer/files/rox | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/x11-fm/rox-filer/files/rox b/x11-fm/rox-filer/files/rox index ff5c1a1a8d82..8633767a6c34 100644 --- a/x11-fm/rox-filer/files/rox +++ b/x11-fm/rox-filer/files/rox @@ -1,3 +1,8 @@ #!/bin/sh +if [ -z "${CHARSET}" ]; then + CHARSET=iso-8859-1 + export CHARSET +fi + exec %%PREFIX%%/apps/ROX-Filer/AppRun "$@" |