mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
1.Upgrade ruby form 2.4.2 to 2.5.0. 2.Update the checksum of LIC_FILES_CHKSUM. 3.Delete ruby-CVE-2017-9224.patch, ruby-CVE-2017-9227.patch, ruby-CVE-2017-9229.patch, since it is integrated upstream. 4.Modify ruby-CVE-2017-9226.patch, since the data has been changed. (From OE-Core rev: 67b9f407f7c40c63c7f9518b4ee3d4d1cc7c75ce) Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
535 B
Diff
17 lines
535 B
Diff
Upstream-Status: Pending
|
|
diff -ru ruby-1.8.7-p248.orig/ext/extmk.rb ruby-1.8.7-p248/ext/extmk.rb
|
|
--- ruby-1.8.7-p248.orig/ext/extmk.rb 2009-12-24 03:01:58.000000000 -0600
|
|
+++ ruby-1.8.7-p248/ext/extmk.rb 2010-02-12 15:55:27.370061558 -0600
|
|
@@ -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
|
|
--
|
|
|