diff options
author | olgeni <olgeni@FreeBSD.org> | 2003-05-19 21:55:18 +0000 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2003-05-19 21:55:18 +0000 |
commit | e169cec063af3d8d165a2cf4b25ea603b2978a5c (patch) | |
tree | a338491d450b1221ab5979784a2f42df98ecb9eb | |
parent | 1c51c9826d50212203f9aa4f0c0b41777ef948c8 (diff) | |
download | FreeBSD-ports-e169cec063af3d8d165a2cf4b25ea603b2978a5c.zip FreeBSD-ports-e169cec063af3d8d165a2cf4b25ea603b2978a5c.tar.gz |
Add default CHARSET fallback (iso-8859-1).
-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 ff5c1a1..8633767 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 "$@" |