From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9208 invoked by alias); 29 Aug 2003 19:19:03 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 9162 invoked from network); 29 Aug 2003 19:19:00 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.115.144) by sources.redhat.com with SMTP; 29 Aug 2003 19:19:00 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p2/8.12.5) with ESMTP id h7TJIwFd006995 for ; Fri, 29 Aug 2003 21:18:58 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6p2/8.12.6) with ESMTP id h7TJIwSr069359 for ; Fri, 29 Aug 2003 21:18:58 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p2/8.12.6/Submit) id h7TJIwVB069356; Fri, 29 Aug 2003 21:18:58 +0200 (CEST) Date: Fri, 29 Aug 2003 19:19:00 -0000 Message-Id: <200308291918.h7TJIwVB069356@elgar.kettenis.dyndns.org> From: Mark Kettenis To: gdb-patches@sources.redhat.com Subject: [PATCH] Remove duplicate check result printing from configure X-SW-Source: 2003-08/txt/msg00541.txt.bz2 This patch prevents that the result of the check for uintptr_t is printed twice. Checked in as obvious. Mark Index: ChangeLog from Mark Kettenis * configure.in: Remove redundant AC_MSG_RESULT in check for uintptr_t in stdint.h. * configure: Regenerated. Index: configure.in =================================================================== RCS file: /cvs/src/src/gdb/configure.in,v retrieving revision 1.129 diff -u -p -r1.129 configure.in --- configure.in 22 Jul 2003 18:18:09 -0000 1.129 +++ configure.in 29 Aug 2003 19:17:08 -0000 @@ -526,7 +526,6 @@ AC_CACHE_CHECK([for uintptr_t in stdint. [uintptr_t foo = 0;], gdb_cv_have_uintptr_t=yes, gdb_cv_have_uintptr_t=no)]) -AC_MSG_RESULT($gdb_cv_have_uintptr_t) if test $gdb_cv_have_uintptr_t = yes; then AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if provides the uintptr_t type.]) fi