aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2015-04-04 08:37:57 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2015-04-13 12:56:14 +0200
commit9667f17d6ec3ca1b719d230e69569cf57c766a4d (patch)
tree2b307dce022a9038dbda39ae796cfeec4d4445a2 /meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch
parent3f3b11d4c8e4339af8d38bce22e6ebd29ac08fca (diff)
downloadmeta-openembedded-contrib-9667f17d6ec3ca1b719d230e69569cf57c766a4d.tar.gz
ruby: package update to verison 2.2.1
LIC_FILES_CHKSUM changes: BDSL: update copyright notice with "2013" GPL: update to GPLv2 LEGAL: added license info for ccan files dropped patches since they are now incorperated. several security fixes included: CVE-2014-2525 CVE-2014-0160 CVE-2014-2734 CVE-2014-8080 CVE-2014-8090 for addional information: http://svn.ruby-lang.org/repos/ruby/tags/v2_2_1/ChangeLog Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch')
-rw-r--r--meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch b/meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch
deleted file mode 100644
index 5ac5d54a3f..0000000000
--- a/meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Subject: [PATCH] mkmf.rb: fix race conditions at install-ext
-
-Upstream-Status: backport
-
-* lib/mkmf.rb (create_makefile): fix race conditions at install-ext.
- target files need to depend on destination directory timestamp
- files, not phony trgets.
-
-git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
-Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
----
- lib/mkmf.rb | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/mkmf.rb b/lib/mkmf.rb
-index 556684c..a277354 100644
---- a/lib/mkmf.rb
-+++ b/lib/mkmf.rb
-@@ -2055,7 +2055,7 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
- for f in files
- dest = "#{dir}/#{File.basename(f)}"
- mfile.print("install-rb#{sfx}: #{dest}\n")
-- mfile.print("#{dest}: #{f}\n")
-+ mfile.print("#{dest}: #{f} #{timestamp_file(dir)}\n")
- mfile.print("\t$(Q) $(#{$extout ? 'COPY' : 'INSTALL_DATA'}) #{f} $(@D#{sep})\n")
- if defined?($installed_list) and !$extout
- mfile.print("\t@echo #{dest}>>$(INSTALLED_LIST)\n")
---
-2.0.0
-