Re: Problem with shtool on IRIX6

2007-10-05 Thread Ralf S. Engelschall
On Thu, Oct 04, 2007, Joerg Lehrke wrote: I know that IRIX is not a supported platform, but the problem I found there can be avoided easily. /bin/sh messes up the opt_e string within the install command of shtool. Especially the MySQL RPM build fails on IRIX because of this. Since OpenPKG

Re: Problem with shtool on IRIX6

2007-10-05 Thread Joerg Lehrke
The problem is caused by following block within the shtool install function: # adjust the target file if [ .$opt_e != . ]; then sed='sed' OIFS=$IFS; IFS=$ASC_NL; set -- $opt_e; IFS=$OIFS for e do sed=$sed -e '$e'

Re: Problem with shtool on IRIX6

2007-10-05 Thread Ralf S. Engelschall
On Fri, Oct 05, 2007, Joerg Lehrke wrote: The problem is caused by following block within the shtool install function: [...] Ah, I see. Well, mysql.spec's usage of shtool subst with _arbitrary_ complex sed(1) style -e options is already the source of the trouble. I'll see what we can do for

Re: Problem with shtool on IRIX6

2007-10-05 Thread Christoph Schug
On Fri, Oct 05, 2007, Ralf S. Engelschall wrote: On Fri, Oct 05, 2007, Joerg Lehrke wrote: The problem is caused by following block within the shtool install function: [...] Ah, I see. Well, mysql.spec's usage of shtool subst with _arbitrary_ complex sed(1) style -e options is

Re: Problem with shtool on IRIX6

2007-10-05 Thread Ralf S. Engelschall
On Fri, Oct 05, 2007, Christoph Schug wrote: On Fri, Oct 05, 2007, Ralf S. Engelschall wrote: On Fri, Oct 05, 2007, Joerg Lehrke wrote: The problem is caused by following block within the shtool install function: [...] Ah, I see. Well, mysql.spec's usage of shtool subst with