diff options
author | Tom Tromey <tromey@adacore.com> | 2019-12-18 08:50:57 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-12-19 11:28:53 -0700 |
commit | 78aa740b768e1e62f8bf9d216901245c452a31d9 (patch) | |
tree | d1dd2287b6a9cd4d653d36228bd5eaa9fd084e8f /sim/ppc | |
parent | 2032eb7e934e65ab071f2a6ee8ce92327715d01d (diff) | |
download | gdb-78aa740b768e1e62f8bf9d216901245c452a31d9.zip gdb-78aa740b768e1e62f8bf9d216901245c452a31d9.tar.gz gdb-78aa740b768e1e62f8bf9d216901245c452a31d9.tar.bz2 |
Add install-strip to sim/
PR build/24572 notes that "make install-strip" fails. For me, it
works in every directory except "sim", so this patch adds
install-strip targets to the Makefiles that appear there.
sim/ChangeLog
2019-12-19 Tom Tromey <tromey@adacore.com>
PR build/24572:
* Makefile.in (install-strip): New target.
sim/common/ChangeLog
2019-12-19 Tom Tromey <tromey@adacore.com>
PR build/24572:
* Makefile.in (install-strip): New target.
sim/igen/ChangeLog
2019-12-19 Tom Tromey <tromey@adacore.com>
PR build/24572:
* Makefile.in (install-strip): New target.
sim/ppc/ChangeLog
2019-12-19 Tom Tromey <tromey@adacore.com>
PR build/24572:
* Makefile.in (install-strip): New target.
sim/testsuite/ChangeLog
2019-12-19 Tom Tromey <tromey@adacore.com>
PR build/24572:
* Makefile.in (install-strip): New target.
Change-Id: I76613bc5c7e7812284f33826f8a5d914477fcdc5
Diffstat (limited to 'sim/ppc')
-rw-r--r-- | sim/ppc/ChangeLog | 5 | ||||
-rw-r--r-- | sim/ppc/Makefile.in | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index 665c760..4d6fb6d 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,8 @@ +2019-12-19 Tom Tromey <tromey@adacore.com> + + PR build/24572: + * Makefile.in (install-strip): New target. + 2019-01-26 Tom Tromey <tom@tromey.com> * Makefile.in (version.c): Use sim's create-version.sh. diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index fb5a6bd..8ad76c6 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -884,5 +884,10 @@ install: installdirs n=`echo run | sed '$(program_transform_name)'`; \ $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT) +install-strip: installdirs + n=`echo run | sed '$(program_transform_name)'`; \ + $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT) + $(STRIP) $(DESTDIR)$(bindir)/$$n$(EXEEXT) + installdirs: $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir) |