This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMIT] Fix bad quoting in configure.ac


The description arg of AC_DEFINE for _MSE_INT_H was badly quoted,
which caused every word of the comment in config.in to be enclosed in
[].  The attached fixes this.

Committed as obvious.

2005-05-20  Eli Zaretskii  <eliz@gnu.org>

	* configure.ac: Fix bad description of _MSE_INT_H that caused
	each word in config.in to be enclosed in [].
	* config.in: Regenerate.

Index: gdb/configure.ac
===================================================================
RCS file: /cvs/src/src/gdb/configure.ac,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- gdb/configure.ac	20 May 2005 11:32:50 -0000	1.19
+++ gdb/configure.ac	20 May 2005 18:17:47 -0000	1.20
@@ -396,8 +396,8 @@
   solaris2.[[789]])
     if test "$GCC" = yes; then
       AC_DEFINE(_MSE_INT_H, 1,
-        [[Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
-   Solaris 2.[789] when using GCC. ]])
+        [Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
+   Solaris 2.[789] when using GCC. ])
     fi ;;
 esac
 AC_CHECK_HEADERS(curses.h cursesX.h ncurses.h ncurses/ncurses.h)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]