> + no) BUGURL=""; just BUGURL= (no useless trailing semicolon).
> + case ${BUGURL} in Please quote this as "$BUGURL". > + REPORT_BUGS_TO="<$BUGURL>" > + REPORT_BUGS_TEXI="@uref{`echo $BUGURL | sed 's/@/@@/g'`}" Please do this instead: [EMAIL PROTECTED] "$BUGURL" | sed 's/@/@@/g'`} as suggested by Andreas. Quoting is "less" necessary in variable assignments (it is still necessary for REPORT_BUGS_TO because of the less-than/greater-than signs). Otherwise seems okay, but please resubmit. Paolo