This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project. See the GDB home page for more information.


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

FreeBSD 3.1 configury


Jim,

Here's a tweek to config.guess for FreeBSD 3.1.  It's already in the
`official' config.guess.

	Andrew

1999-03-21  Ben Elliston  <bje@cygnus.com>

        * config.guess: Correct typo for detecting ELF on FreeBSD.
--------------D13E6B127D90170FB0D77664
Content-Type: text/plain; charset=us-ascii;
 name="freebsd.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="freebsd.patch"

Index: config.guess
===================================================================
RCS file: /cvs/cvsfiles/devo/config.guess,v
retrieving revision 1.126.8.1
diff -p -r1.126.8.1 config.guess
*** config.guess	1999/02/25 09:43:46	1.126.8.1
--- config.guess	1999/03/22 12:32:47
*************** EOF
*** 513,519 ****
      *:FreeBSD:*:*)
  	if test -x /usr/bin/objformat; then
  	    if test "elf" = "`/usr/bin/objformat`"; then
! 		echo ${UNAME_MACHINE}-unknown-freebsdelf`echo${UNAME_RELEASE}|sed -e 's/[-_].*//'`
  		exit 0
  	    fi
  	fi
--- 513,519 ----
      *:FreeBSD:*:*)
  	if test -x /usr/bin/objformat; then
  	    if test "elf" = "`/usr/bin/objformat`"; then
! 		echo ${UNAME_MACHINE}-unknown-freebsdelf`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'`
  		exit 0
  	    fi
  	fi

--------------D13E6B127D90170FB0D77664--