From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3625 invoked by alias); 25 Sep 2006 17:14:32 -0000 Received: (qmail 3613 invoked by uid 22791); 25 Sep 2006 17:14:31 -0000 X-Spam-Check-By: sourceware.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 25 Sep 2006 17:14:29 +0000 Received: from home.wh0rd.org (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 45C576470E for ; Mon, 25 Sep 2006 17:14:25 +0000 (UTC) Received: (qmail 28071 invoked from network); 24 Sep 2006 18:01:20 -0400 Received: from unknown (HELO vapier) (192.168.0.2) by 192.168.0.1 with SMTP; 24 Sep 2006 18:01:20 -0400 From: Mike Frysinger To: binutils@sourceware.org Subject: [patch ping] change linux-gnu* -> linux* in libtool files User-Agent: KMail/1.9.1 GEOMAN: IS A RETARD MIME-Version: 1.0 Cc: gcc-patches@gcc.gnu.org, gdb-patches@sourceware.org Date: Mon, 25 Sep 2006 17:14:00 -0000 Content-Type: Multipart/Mixed; boundary="Boundary-00=_HBwFFYiNgKTPWcE" Message-Id: <200609241801.43629.vapier@gentoo.org> Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-09/txt/msg00165.txt.bz2 --Boundary-00=_HBwFFYiNgKTPWcE Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-length: 184 ok to commit to sourceware repo ? upstream libtool changed libtool.m4 a while back to look for 'linux*)' instead of 'linux-gnu*)' ... ive also tweaked the ltconfig accordingly -mike --Boundary-00=_HBwFFYiNgKTPWcE Content-Type: text/x-diff; charset="us-ascii"; name="binutils-libtool-generic-linux.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="binutils-libtool-generic-linux.patch" Content-length: 740 2006-04-10 Mike Frysinger * libtool.m4: Accept linux* instead of just linux-gnu*. * ltconfig: Likewise. Also accept linux-uclibc* as well as linux-gnu*. --- libtool.m4 +++ libtool.m4 @@ -739,7 +739,7 @@ ;; # This must be Linux ELF. -linux-gnu*) +linux*) lt_cv_deplibs_check_method=pass_all ;; --- ltconfig +++ ltconfig @@ -602,7 +602,7 @@ # Transform linux* to *-*-linux-gnu*, to support old configure scripts. case $host_os in -linux-gnu*) ;; +linux-gnu*|linux-uclibc*) ;; linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'` esac @@ -1247,7 +1247,7 @@ ;; # This must be Linux ELF. -linux-gnu*) +linux*) version_type=linux need_lib_prefix=no need_version=no --Boundary-00=_HBwFFYiNgKTPWcE--