On Fri, Mar 23, 2007 at 06:55:38PM +0100, Andreas Schwab wrote: > "H. J. Lu" <[EMAIL PROTECTED]> writes: > > > REPORT_BUGS_TO="<$1>" > > - REPORT_BUGS_TEXI="@uref{$1}" > > + REPORT_BUGS_TEXI="@uref{`echo $1 | sed 's/@/@@/g'`}" > > You need to quote $1.
I treated it the same as REPORT_BUGS_TEXI="@uref{`echo $withval | sed 's/@/@@/g'`}". It works for me. H.J.