To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=48213
------- Additional comments from [EMAIL PROTECTED] Wed Apr 27 08:26:52 -0700
2005 -------
You can set iconfilename to "openofficeorg-19" as well
I always thought assuming /bin/sh is bourne-compatible would be OK, but this is
apparently wrong. (rpm-scripts are always executed with /bin/sh unless otherwise
stated)
If you have a bash installed you can change the spec to read
"%build -p /bin/bash"
I don't think it is the hyphen that ksh doesn't like (but I don't have a ksh
installed)
The goal of "iconname=${originalname//.}" is to strip out the "." from the
contents of the variable $originalname
So if you know a portable equivalent of
"echo $originalfilename | sed -e 's/\.//g'"
You can use that as well.
For the moment you can use
iconfilename=`echo $originalfilename | sed -e 's/\.//g'`
or
iconfilenmae=`echo $originalfilename | tr -d . `
You get the idea...
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]