summaryrefslogtreecommitdiff
path: root/config/acx.m4
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2007-03-26 15:40:00 +0000
committerH.J. Lu <hjl@lucon.org>2007-03-26 15:40:00 +0000
commitd11271f715291708dc177e0bd371dfd04bb39308 (patch)
tree7d3d1918ce7886f4693cad26fef84df095888cfd /config/acx.m4
parenta4a146feee59e90bca8172258afafd38e17ccd28 (diff)
downloadgdb-d11271f715291708dc177e0bd371dfd04bb39308.tar.gz
2007-03-26 H.J. Lu <hongjiu.lu@intel.com>
* acx.m4 (ACX_BUGURL): Set BUGURL first. Quote $BUGURL first when setting REPORT_BUGS_TEXI.
Diffstat (limited to 'config/acx.m4')
-rw-r--r--config/acx.m419
1 files changed, 13 insertions, 6 deletions
diff --git a/config/acx.m4 b/config/acx.m4
index b8676fc7af8..bbe7b5e06fb 100644
--- a/config/acx.m4
+++ b/config/acx.m4
@@ -577,16 +577,23 @@ AC_DEFUN([ACX_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_TEXI=""
+ no) BUGURL=
;;
- *) REPORT_BUGS_TO="<$withval>"
- REPORT_BUGS_TEXI="@uref{`echo $withval | sed 's/@/@@/g'`}"
+ *) BUGURL="$withval"
;;
esac],
- REPORT_BUGS_TO="<$1>"
- REPORT_BUGS_TEXI="@uref{`echo $1 | sed 's/@/@@/g'`}"
+ BUGURL="$1"
)
+ case ${BUGURL} in
+ "")
+ REPORT_BUGS_TO=
+ REPORT_BUGS_TEXI=
+ ;;
+ *)
+ REPORT_BUGS_TO="<$BUGURL>"
+ REPORT_BUGS_TEXI=@uref{`echo "$BUGURL" | sed 's/@/@@/g'`}
+ ;;
+ esac;
AC_SUBST(REPORT_BUGS_TO)
AC_SUBST(REPORT_BUGS_TEXI)
])