Title: Message Title
Karl-Heinz Marbaise commented on an issue
Mojo's AppAssembler Maven Plugin / Bug MAPPASM-248
Wrapper script fails on Solaris / SunOS 5.2 when the LC_TYPE is set to a non-single byte locale
The problem is that with LC_TYPE set to a multi-byte tr fails when using [:upper:], [:lower:], and [:blank:].

To fix the issue we modified the script as follows:

Change:
DIST_OS=`uname -s | tr "[:upper:]" "[:lower:]" | tr -d [:blank:]`
To:
DIST_OS=`uname -s | tr "[A-Z]" "[a-z]" | tr -d ' '`

Change:
DIST_ARCH=`uname -p | tr "[:upper:]" "[:lowe...
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to