This is the mail archive of the
binutils@sources.redhat.com
mailing list for the binutils project.
[PATCH] Don't default to gdb.ini under Cygwin
- From: Christopher Faylor <cgf at redhat dot com>
- To: binutils at sources dot redhat dot com
- Date: Mon, 11 Nov 2002 12:22:43 -0500
- Subject: [PATCH] Don't default to gdb.ini under Cygwin
Cygwin's gdb no longer uses "gdb.ini" as its default initialization
file. The patch below reflects this.
cgf
2002-11-11 Christopher Faylor <cgf@redhat.com>
* configure.in: Use .gdbinit under Cygwin.
* configure: Regenerate.
Index: configure.in
===================================================================
RCS file: /cvs/uberbaum/gas/configure.in,v
retrieving revision 1.120
diff -u -p -r1.120 configure.in
--- configure.in 30 Oct 2002 17:05:41 -0000 1.120
+++ configure.in 11 Nov 2002 17:09:32 -0000
@@ -72,7 +72,7 @@ AM_CONFIG_HEADER(config.h:config.in)
# .gdbinit.
GDBINIT=".gdbinit"
case "${host}" in
- *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
+ *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-windows*)
GDBINIT="gdb.ini"
;;
esac
Index: configure
===================================================================
RCS file: /cvs/uberbaum/gas/configure,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -p -r1.133 -r1.134
--- configure 30 Oct 2002 17:05:40 -0000 1.133
+++ configure 11 Nov 2002 17:21:33 -0000 1.134
@@ -2214,7 +2214,7 @@ fi
# .gdbinit.
GDBINIT=".gdbinit"
case "${host}" in
- *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
+ *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-windows*)
GDBINIT="gdb.ini"
;;
esac