aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2006-07-14 14:26:11 +0000
committerBen Elliston <bje@gnu.org>2006-07-14 14:26:11 +0000
commitaad6a8333e0d119c5eb824999cefd164bd2d2dc1 (patch)
tree093a886ceb78ddf2dba7e66e198c23cb2b47ade7
parentdb93e372db4777647c7d9c7d03569ab2224f74ed (diff)
downloaddejagnu-aad6a8333e0d119c5eb824999cefd164bd2d2dc1.zip
dejagnu-aad6a8333e0d119c5eb824999cefd164bd2d2dc1.tar.gz
dejagnu-aad6a8333e0d119c5eb824999cefd164bd2d2dc1.tar.bz2
2006-07-13 Daniel Jacobowitz <dan@codesourcery.com>
* Makefile.am (DOCBOOK2RTF): Fix typo. * Makefile.in: Regenerated. * lib/libgloss.exp (process_multilib_options): Use -- to handle options starting with hyphens.
-rw-r--r--ChangeLog7
-rw-r--r--Makefile.am2
-rw-r--r--Makefile.in2
-rw-r--r--lib/libgloss.exp2
4 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index dfd77da..8ec15f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-07-13 Daniel Jacobowitz <dan@codesourcery.com>
+
+ * Makefile.am (DOCBOOK2RTF): Fix typo.
+ * Makefile.in: Regenerated.
+ * lib/libgloss.exp (process_multilib_options): Use -- to handle
+ options starting with hyphens.
+
2006-06-23 Eric Botcazou <ebotcazou@adacore.com>
* libgloss.exp (find_gnatmake): Rewrite.
diff --git a/Makefile.am b/Makefile.am
index bf79264..5a72019 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -204,7 +204,7 @@ dist_man_MANS = doc/runtest.1
info_TEXINFOS = doc/dejagnu.texi
DOCBOOK2PDF = @DOCBOOK2PDF@
-DOCBOOK2RTF= = @DOCBOOK2RTF@
+DOCBOOK2RTF = @DOCBOOK2RTF@
DOCBOOK2PS = @DOCBOOK2PS@
DOCBOOK2HTML = @DOCBOOK2HTML@
DOCBOOK2TEXI = @DOCBOOK2TEXI@
diff --git a/Makefile.in b/Makefile.in
index 51528b6..580c6be 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -142,7 +142,7 @@ DEPDIR = @DEPDIR@
DOCBOOK2HTML = @DOCBOOK2HTML@
DOCBOOK2PDF = @DOCBOOK2PDF@
DOCBOOK2PS = @DOCBOOK2PS@
-DOCBOOK2RTF = = @DOCBOOK2RTF@
+DOCBOOK2RTF = @DOCBOOK2RTF@
DOCBOOK2TEXI = @DOCBOOK2TEXI@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
diff --git a/lib/libgloss.exp b/lib/libgloss.exp
index e904b8c..1adb2bb 100644
--- a/lib/libgloss.exp
+++ b/lib/libgloss.exp
@@ -759,7 +759,7 @@ proc process_multilib_options { args } {
if { $x == "" } {
continue
}
- switch -glob $x {
+ switch -glob -- $x {
"aout" {
set_board_info obj_format "a.out"
}