mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Most patches had to be refreshed
Note that we can now drop
EXTRA_AUTORECONF += "--exclude=aclocal"
from the recipe, as ruby upstream now fully supports
runnning aclocal:
df9bf70cd2
ec43478f34
Also note that 'created.rid' is not being installed
anymore since v2.6.0
While additional LICENSEs were added to the recipe,
they should always have been mentioned in this recipe,
i.e. the license checksum was updated only because:
* URLs were updated
* new imported components were mentioned (with no new licenses)
* formatting was changed
* dates were updated
(From OE-Core rev: 7124051b3b2e91e81c7b8565104ae9c5bea10be1)
Signed-off-by: André Draszik <andre.draszik@jci.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
999 B
Diff
35 lines
999 B
Diff
From a6e12b25a54d112c899b70c89c0bec9c5e5ebf3c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <andre.draszik@jci.com>
|
|
Date: Mon, 30 Sep 2019 16:57:01 +0100
|
|
Subject: [PATCH 1/3] extmk: fix cross-compilation of external gems
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Note that I (André) didn't actually write this patch, I
|
|
only updated it so that git-am works.
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: André Draszik <andre.draszik@jci.com>
|
|
---
|
|
ext/extmk.rb | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/ext/extmk.rb b/ext/extmk.rb
|
|
index 1389dc4117..e4d923d7a7 100755
|
|
--- a/ext/extmk.rb
|
|
+++ b/ext/extmk.rb
|
|
@@ -413,8 +413,8 @@ def $mflags.defined?(var)
|
|
end
|
|
$ruby = [$ruby]
|
|
$ruby << "-I'$(topdir)'"
|
|
+$ruby << "-I'$(top_srcdir)/lib'"
|
|
unless CROSS_COMPILING
|
|
- $ruby << "-I'$(top_srcdir)/lib'"
|
|
$ruby << "-I'$(extout)/$(arch)'" << "-I'$(extout)/common'" if $extout
|
|
ENV["RUBYLIB"] = "-"
|
|
end
|
|
--
|
|
2.23.0.rc1
|
|
|