public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Paralkar Anmol-B07584 <B07584@freescale.com>
To: "Michael Snyder" <msnyder@vmware.com>
Cc: <gdb-patches@sourceware.org>,
	       "Medve Emilian-EMMEDVE1" <EMMEDVE1@freescale.com>
Subject: RE: Fix for: "/usr/bin/install: cannot stat `libinproctrace.so': No such file or directory"
Date: Thu, 02 Sep 2010 23:49:00 -0000	[thread overview]
Message-ID: <95944E5A981ABF4A872A89BF855D4BA605C24E87@az33exm21> (raw)
In-Reply-To: <4C800D2F.1010702@vmware.com>

[-- Attachment #1: Type: text/plain, Size: 3089 bytes --]

Hello Michael,

 Sorry! Please see the (attached) re-spun patch.

Thanks,
Anmol.

> -----Original Message-----
> From: Michael Snyder [mailto:msnyder@vmware.com]
> Sent: Thursday, September 02, 2010 3:47 PM
> To: Paralkar Anmol-B07584
> Cc: gdb-patches@sourceware.org; Medve Emilian-EMMEDVE1
> Subject: Re: Fix for: "/usr/bin/install: cannot stat
`libinproctrace.so':
> No such file or directory"
> 
> 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/../../mkinsta
lld
> irs /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/../../mkinsta
lld
> irs /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/../../mkinsta
lld
> irs /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
> >
> 


[-- Attachment #2: IPA_DEPFILES.patch --]
[-- Type: application/octet-stream, Size: 1554 bytes --]

Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/ChangeLog,v
retrieving revision 1.423
diff -c -p -r1.423 ChangeLog
*** ChangeLog	1 Sep 2010 18:57:12 -0000	1.423
--- ChangeLog	2 Sep 2010 22:00:41 -0000
***************
*** 1,3 ****
--- 1,8 ----
+ 2010-09-02  Anmol P. Paralkar  <anmol@freescale.com>
+ 
+ 	* Makefile.in ($IPA_DEPFILES): Prefix with '$' to ensure it makes it
+ 	to the shell.
+ 
  2010-09-01  Joel Brobecker  <brobecker@adacore.com>
  
  	* gdbserver/lynx-low.c, gdbserver/lynx-low.h,
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/Makefile.in,v
retrieving revision 1.96
diff -c -p -r1.96 Makefile.in
*** Makefile.in	1 Sep 2010 18:57:12 -0000	1.96
--- Makefile.in	2 Sep 2010 22:00:41 -0000
*************** install: all install-only
*** 167,173 ****
  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 \
  		$(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
  		$(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
  	fi; \
--- 167,173 ----
  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 \
  		$(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir); \
  		$(INSTALL_PROGRAM) $(IPA_LIB) $(DESTDIR)$(libdir)/$(IPA_LIB); \
  	fi; \

  reply	other threads:[~2010-09-02 22:13 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-02 23:20 Anmol P. Paralkar
2010-09-02 23:33 ` Michael Snyder
2010-09-02 23:49   ` Paralkar Anmol-B07584 [this message]
2010-09-06 11:57     ` Pedro Alves

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=95944E5A981ABF4A872A89BF855D4BA605C24E87@az33exm21 \
    --to=b07584@freescale.com \
    --cc=EMMEDVE1@freescale.com \
    --cc=gdb-patches@sourceware.org \
    --cc=msnyder@vmware.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).