From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22314 invoked by alias); 2 Sep 2010 20:46:50 -0000 Received: (qmail 22303 invoked by uid 22791); 2 Sep 2010 20:46:48 -0000 X-SWARE-Spam-Status: No, hits=-4.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-outbound-1.vmware.com (HELO smtp-outbound-1.vmware.com) (65.115.85.69) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 02 Sep 2010 20:46:41 +0000 Received: from mailhost3.vmware.com (mailhost3.vmware.com [10.16.27.45]) by smtp-outbound-1.vmware.com (Postfix) with ESMTP id 37C9F4100B; Thu, 2 Sep 2010 13:46:40 -0700 (PDT) Received: from msnyder-server.eng.vmware.com (promd-2s-dhcp138.eng.vmware.com [10.20.124.138]) by mailhost3.vmware.com (Postfix) with ESMTP id EB570CD962; Thu, 2 Sep 2010 13:46:39 -0700 (PDT) Message-ID: <4C800D2F.1010702@vmware.com> Date: Thu, 02 Sep 2010 23:33:00 -0000 From: Michael Snyder User-Agent: Thunderbird 2.0.0.24 (X11/20100702) MIME-Version: 1.0 To: "Anmol P. Paralkar" CC: "gdb-patches@sourceware.org" , Emilian Medve Subject: Re: Fix for: "/usr/bin/install: cannot stat `libinproctrace.so': No such file or directory" References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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/msg00111.txt.bz2 Anmol P. Paralkar wrote: > 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. How about a change log entry? > =================================================================== > 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 >