Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/newlib/files: newlib-2.1.0-msp430-destdir.patch
Date: Fri, 31 Oct 2014 01:55:08
Message-Id: 20141031015504.2D6CE91C2@oystercatcher.gentoo.org
1 vapier 14/10/31 01:55:04
2
3 Added: newlib-2.1.0-msp430-destdir.patch
4 Log:
5 Add DESTDIR fix from upstream for msp430.
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
8
9 Revision Changes Path
10 1.1 sys-libs/newlib/files/newlib-2.1.0-msp430-destdir.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/newlib/files/newlib-2.1.0-msp430-destdir.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/newlib/files/newlib-2.1.0-msp430-destdir.patch?rev=1.1&content-type=text/plain
14
15 Index: newlib-2.1.0-msp430-destdir.patch
16 ===================================================================
17 From 0a7009c61811b4451ff6cccda24f42ab07142603 Mon Sep 17 00:00:00 2001
18 From: DJ Delorie <dj@××××××.com>
19 Date: Thu, 23 Oct 2014 01:49:45 +0000
20 Subject: [PATCH] 2014-10-22 Tim Harder <radhermit@×××××.com> *
21 msp430/Makefile.in: respect DESTDIR during install
22
23 ---
24 libgloss/ChangeLog | 4 ++++
25 libgloss/msp430/Makefile.in | 6 ++++--
26 2 files changed, 8 insertions(+), 2 deletions(-)
27
28 2014-10-22 Tim Harder <radhermit@×××××.com>
29
30 * msp430/Makefile.in: respect DESTDIR during install
31
32 diff --git a/libgloss/msp430/Makefile.in b/libgloss/msp430/Makefile.in
33 index d72051d..b9f5a6a 100644
34 --- a/libgloss/msp430/Makefile.in
35 +++ b/libgloss/msp430/Makefile.in
36 @@ -12,6 +12,7 @@
37
38 # Makefile for libgloss/msp430.
39
40 +DESTDIR =
41 VPATH = @srcdir@
42 srcdir = @srcdir@
43 objdir = .
44 @@ -138,11 +139,11 @@
45
46 install: $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT) $(SCRIPTS)
47 for c in $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT); do \
48 - $(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$c ;\
49 + $(INSTALL_DATA) $$c $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$$c ;\
50 done
51 for c in $(SCRIPTS); do \
52 b=`basename $$c`; \
53 - $(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$b ;\
54 + $(INSTALL_DATA) $$c $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$$b ;\
55 done
56
57 clean mostlyclean: