From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9714 invoked by alias); 2 Sep 2010 20:25:06 -0000 Received: (qmail 9694 invoked by uid 22791); 2 Sep 2010 20:25:04 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from tx2ehsobe005.messaging.microsoft.com (HELO TX2EHSOBE010.bigfish.com) (65.55.88.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 02 Sep 2010 20:24:58 +0000 Received: from mail132-tx2-R.bigfish.com (10.9.14.239) by TX2EHSOBE010.bigfish.com (10.9.40.30) with Microsoft SMTP Server id 8.1.340.0; Thu, 2 Sep 2010 20:24:55 +0000 Received: from mail132-tx2 (localhost.localdomain [127.0.0.1]) by mail132-tx2-R.bigfish.com (Postfix) with ESMTP id D2DE914703B9 for ; Thu, 2 Sep 2010 20:24:55 +0000 (UTC) X-SpamScore: 0 X-BigFish: VS0(z2005kz4015L1972izz1202hzzz2dh2a8h) Received: from mail132-tx2 (localhost.localdomain [127.0.0.1]) by mail132-tx2 (MessageSwitch) id 1283459095491123_24000; Thu, 2 Sep 2010 20:24:55 +0000 (UTC) Received: from TX2EHSMHS025.bigfish.com (unknown [10.9.14.250]) by mail132-tx2.bigfish.com (Postfix) with ESMTP id 6F0281BD8046 for ; Thu, 2 Sep 2010 20:24:55 +0000 (UTC) Received: from az33egw02.freescale.net (192.88.158.103) by TX2EHSMHS025.bigfish.com (10.9.99.125) with Microsoft SMTP Server (TLS) id 14.0.482.44; Thu, 2 Sep 2010 20:24:47 +0000 Received: from de01smr01.freescale.net (de01smr01.freescale.net [10.208.0.31]) by az33egw02.freescale.net (8.14.3/8.14.3) with ESMTP id o82KOalp002358 for ; Thu, 2 Sep 2010 13:24:47 -0700 (MST) Received: from lds03-tx32 (lds03-tx32.am.freescale.net [10.83.20.63]) by de01smr01.freescale.net (8.13.1/8.13.0) with ESMTP id o82KcM0H025965; Thu, 2 Sep 2010 15:38:22 -0500 (CDT) Date: Thu, 02 Sep 2010 23:20:00 -0000 From: "Anmol P. Paralkar" To: gdb-patches@sourceware.org CC: Emilian Medve Subject: Fix for: "/usr/bin/install: cannot stat `libinproctrace.so': No such file or directory" Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII"; format=flowed X-Reverse-DNS: az33egw02.freescale.net X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-09/txt/msg00110.txt.bz2 Hello, My colleague, Emil kindly pointed out a typo in gdbserver/Makefile.in while looking at the failure below. The following patch fixes the problem. Thanks, Anmol. =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/Makefile.in,v retrieving revision 1.92 diff -u -r1.92 Makefile.in --- Makefile.in 26 Aug 2010 18:03:02 -0000 1.92 +++ Makefile.in 2 Sep 2010 20:13:01 -0000 @@ -165,7 +165,7 @@ install-only: n=`echo gdbserver | sed '$(program_transform_name)'`; \ if [ x$$n = x ]; then n=gdbserver; else true; fi; \ - if [ x$IPA_DEPFILES != x ]; then \ + if [ x$$IPA_DEPFILES != x ]; then \ $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \ $(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \ fi; \ ================================================================================ Wed Sep 1 12:08:07 CDT 2010: Make install gdbserver ================================================================================ make: Warning: File `Makefile' has modification time 3.1e+02 s in the future n=`echo gdbserver | sed 's,x,x,'`; \ if [ x$n = x ]; then n=gdbserver; else true; fi; \ if [ xPA_DEPFILES != x ]; then \ /bin/sh /proj/ppc/sysperf/labhome/b07584/gnu/src/src/gdb/gdbserver/../../mkinstalldirs /proj/ppc/sysperf/labhome/b07584/gnu/gdbserver/src/powerpc-linux-gnu/lib; \ /usr/bin/install -c libinproctrace.so /proj/ppc/sysperf/labhome/b07584/gnu/gdbserver/src/powerpc-linux-gnu/lib/libinproctrace.so; \ fi; \ /bin/sh /proj/ppc/sysperf/labhome/b07584/gnu/src/src/gdb/gdbserver/../../mkinstalldirs /proj/ppc/sysperf/labhome/b07584/gnu/gdbserver/src/powerpc-linux-gnu/bin; \ /usr/bin/install -c gdbserver /proj/ppc/sysperf/labhome/b07584/gnu/gdbserver/src/powerpc-linux-gnu/bin/$n; \ /bin/sh /proj/ppc/sysperf/labhome/b07584/gnu/src/src/gdb/gdbserver/../../mkinstalldirs /proj/ppc/sysperf/labhome/b07584/gnu/gdbserver/src/powerpc-linux-gnu/share/man/man1; \ /usr/bin/install -c -m 644 /proj/ppc/sysperf/labhome/b07584/gnu/src/src/gdb/gdbserver/gdbserver.1 /proj/ppc/sysperf/labhome/b07584/gnu/gdbserver/src/powerpc-linux-gnu/share/man/man1/$n.1 /usr/bin/install: cannot stat `libinproctrace.so': No such file or directory