summaryrefslogtreecommitdiff
path: root/binutils/configure.in
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2007-03-07 22:50:01 +0000
committerJoseph Myers <joseph@codesourcery.com>2007-03-07 22:50:01 +0000
commit74fb07a07134647a85b598cc9a96d481702a0f42 (patch)
tree0c927e29bd8370b4347173808fe9d89eaa4acb5b /binutils/configure.in
parent3b0681f0aa379b9115df949d20cc65aedebbab8a (diff)
downloadbinutils-redhat-74fb07a07134647a85b598cc9a96d481702a0f42.tar.gz
binutils:
* configure.in (REPORT_BUGS_TEXI): Define to Texinfo version of bug-reporting URL. * doc/Makefile.am (config.texi): Define BUGURL. * doc/binutils.texi: Use BUGURL. Remove text about large files and uuencoding. * Makefile.in, configure, doc/Makefile.in: Regenerate. gas: * configure.in (REPORT_BUGS_TEXI): Define to Texinfo version of bug-reporting URL. * doc/Makefile.am (gasver.texi): Define BUGURL. * doc/as.texinfo: Use BUGURL. * Makefile.in, configure, doc/Makefile.in: Regenerate. ld: * configure.in (REPORT_BUGS_TEXI): Define to Texinfo version of bug-reporting URL. * Makefile.am (ldver.texi): Define BUGURL. * ld.texinfo: Use BUGURL. * Makefile.in, configure: Regenerate.
Diffstat (limited to 'binutils/configure.in')
-rw-r--r--binutils/configure.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/binutils/configure.in b/binutils/configure.in
index 7ebc95e34c..46a56a0e44 100644
--- a/binutils/configure.in
+++ b/binutils/configure.in
@@ -35,12 +35,18 @@ AC_ARG_WITH(bugurl,
[Direct users to URL to report a bug]),
[case "$withval" in
yes) AC_MSG_ERROR([bug URL not specified]) ;;
- no) REPORT_BUGS_TO="" ;;
- *) REPORT_BUGS_TO="<URL:$withval>" ;;
+ no) REPORT_BUGS_TO="";
+ REPORT_BUGS_TEXI=""
+ ;;
+ *) REPORT_BUGS_TO="<URL:$withval>"
+ REPORT_BUGS_TEXI="@uref{`echo $withval | sed 's/@/@@/g'`}"
+ ;;
esac],
REPORT_BUGS_TO="<URL:http://www.sourceware.org/bugzilla/>"
+ REPORT_BUGS_TEXI="@uref{http://www.sourceware.org/bugzilla/}"
)
AC_SUBST(REPORT_BUGS_TO)
+AC_SUBST(REPORT_BUGS_TEXI)
AM_BINUTILS_WARNINGS