From: Martin Koegler <mkoegler@auto.tuwien.ac.at>
To: gdb-patches@sources.redhat.com
Subject: [PATCH] Add support for DESTDIR to the simulator core
Date: Tue, 10 May 2005 20:53:00 -0000 [thread overview]
Message-ID: <20050510204920.GA24799@ahab.auto.tuwien.ac.at> (raw)
[-- Attachment #1: Type: text/plain, Size: 255 bytes --]
I noticed, that sim is missing the support for DESTDIR in its Makefiles,
which is supported by all automake based programs.
The patch added support for this feature. Is it possible to apply it to the
CVS?
mfg Martin Kögler
PS: Please CC me on replies.
[-- Attachment #2: sim.korr.patch --]
[-- Type: text/plain, Size: 1531 bytes --]
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/sim/Makefile.in,v
retrieving revision 1.6
diff -u -r1.6 Makefile.in
--- Makefile.in 29 Jan 2005 00:53:13 -0000 1.6
+++ Makefile.in 10 May 2005 20:37:38 -0000
@@ -83,6 +83,7 @@
RUNTESTFLAGS=
FLAGS_TO_PASS = \
+ "DESTDIR=$(DESTDIR)" \
"prefix=$(prefix)" \
"exec_prefix=$(exec_prefix)" \
"bindir=$(bindir)" \
Index: common/Make-common.in
===================================================================
RCS file: /cvs/src/src/sim/common/Make-common.in,v
retrieving revision 1.21
diff -u -r1.21 Make-common.in
--- common/Make-common.in 27 Apr 2005 20:38:08 -0000 1.21
+++ common/Make-common.in 10 May 2005 20:37:38 -0000
@@ -616,14 +616,14 @@
install-common: installdirs
n=`echo run | sed '$(program_transform_name)'`; \
- $(INSTALL_PROGRAM) run$(EXEEXT) $(bindir)/$$n$(EXEEXT)
+ $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
- $(INSTALL_DATA) libsim.a $(libdir)/$$n ; \
- ( cd $(libdir) ; $(RANLIB) $$n )
+ $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
+ ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
installdirs:
- $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
- $(SHELL) $(srcdir)/../../mkinstalldirs $(libdir)
+ $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
+ $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
check:
cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
next reply other threads:[~2005-05-10 20:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-10 20:53 Martin Koegler [this message]
2005-05-10 21:36 ` Daniel Jacobowitz
2005-05-10 21:38 ` Mark Kettenis
2005-05-10 21:42 ` Daniel Jacobowitz
2005-05-18 3:18 ` Daniel Jacobowitz
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=20050510204920.GA24799@ahab.auto.tuwien.ac.at \
--to=mkoegler@auto.tuwien.ac.at \
--cc=gdb-patches@sources.redhat.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