summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/ruby/ruby/0002-Obey-LDFLAGS-for-the-link-of-libruby.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/ruby/ruby/0002-Obey-LDFLAGS-for-the-link-of-libruby.patch')
-rw-r--r--meta/recipes-devtools/ruby/ruby/0002-Obey-LDFLAGS-for-the-link-of-libruby.patch22
1 files changed, 12 insertions, 10 deletions
diff --git a/meta/recipes-devtools/ruby/ruby/0002-Obey-LDFLAGS-for-the-link-of-libruby.patch b/meta/recipes-devtools/ruby/ruby/0002-Obey-LDFLAGS-for-the-link-of-libruby.patch
index 4cf579f427..5979d8bd73 100644
--- a/meta/recipes-devtools/ruby/ruby/0002-Obey-LDFLAGS-for-the-link-of-libruby.patch
+++ b/meta/recipes-devtools/ruby/ruby/0002-Obey-LDFLAGS-for-the-link-of-libruby.patch
@@ -1,25 +1,27 @@
1Upstream-Status: Pending 1From 6d608326970b1613633d7715ebb7d628dfcd16ee Mon Sep 17 00:00:00 2001
2
3From 306e95a9818d39d3349075aac9609e062b0f19ce Mon Sep 17 00:00:00 2001
4From: Christopher Larson <chris_larson@mentor.com> 2From: Christopher Larson <chris_larson@mentor.com>
5Date: Thu, 5 May 2016 10:59:07 -0700 3Date: Thu, 5 May 2016 10:59:07 -0700
6Subject: [PATCH 2/2] Obey LDFLAGS for the link of libruby 4Subject: [PATCH 2/3] Obey LDFLAGS for the link of libruby
7 5
8Signed-off-by: Christopher Larson <chris_larson@mentor.com> 6Signed-off-by: Christopher Larson <chris_larson@mentor.com>
7Upstream-Status: Pending
9--- 8---
10 Makefile.in | 2 +- 9 Makefile.in | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-) 10 1 file changed, 1 insertion(+), 1 deletion(-)
12 11
13Index: ruby-2.5.0/Makefile.in 12diff --git a/Makefile.in b/Makefile.in
14=================================================================== 13index fa1e19ef37..bbd07fa34b 100644
15--- ruby-2.5.0.orig/Makefile.in 14--- a/Makefile.in
16+++ ruby-2.5.0/Makefile.in 15+++ b/Makefile.in
17@@ -77,7 +77,7 @@ LIBS = @LIBS@ $(EXTLIBS) 16@@ -109,7 +109,7 @@ MISSING = @LIBOBJS@ @ALLOCA@
18 MISSING = @LIBOBJS@ @ALLOCA@
19 ENABLE_SHARED = @ENABLE_SHARED@ 17 ENABLE_SHARED = @ENABLE_SHARED@
20 LDSHARED = @LIBRUBY_LDSHARED@ 18 LDSHARED = @LIBRUBY_LDSHARED@
19 DLDSHARED = @DLDSHARED@
21-DLDFLAGS = @LIBRUBY_DLDFLAGS@ $(XLDFLAGS) $(ARCH_FLAG) 20-DLDFLAGS = @LIBRUBY_DLDFLAGS@ $(XLDFLAGS) $(ARCH_FLAG)
22+DLDFLAGS = @LIBRUBY_DLDFLAGS@ @LDFLAGS@ $(XLDFLAGS) $(ARCH_FLAG) 21+DLDFLAGS = @LIBRUBY_DLDFLAGS@ @LDFLAGS@ $(XLDFLAGS) $(ARCH_FLAG)
23 SOLIBS = @SOLIBS@ 22 SOLIBS = @SOLIBS@
24 ENABLE_DEBUG_ENV = @ENABLE_DEBUG_ENV@ 23 ENABLE_DEBUG_ENV = @ENABLE_DEBUG_ENV@
25 MAINLIBS = @MAINLIBS@ 24 MAINLIBS = @MAINLIBS@
25--
262.23.0.rc1
27