diff options
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.patch | 31 |
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 @@ | |||
1 | Subject: [PATCH] mkmf.rb: fix race conditions at install-ext | ||
2 | |||
3 | Upstream-Status: backport | ||
4 | |||
5 | * lib/mkmf.rb (create_makefile): fix race conditions at install-ext. | ||
6 | target files need to depend on destination directory timestamp | ||
7 | files, not phony trgets. | ||
8 | |||
9 | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | ||
10 | |||
11 | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> | ||
12 | --- | ||
13 | lib/mkmf.rb | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/lib/mkmf.rb b/lib/mkmf.rb | ||
17 | index 556684c..a277354 100644 | ||
18 | --- a/lib/mkmf.rb | ||
19 | +++ b/lib/mkmf.rb | ||
20 | @@ -2055,7 +2055,7 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""} | ||
21 | for f in files | ||
22 | dest = "#{dir}/#{File.basename(f)}" | ||
23 | mfile.print("install-rb#{sfx}: #{dest}\n") | ||
24 | - mfile.print("#{dest}: #{f}\n") | ||
25 | + mfile.print("#{dest}: #{f} #{timestamp_file(dir)}\n") | ||
26 | mfile.print("\t$(Q) $(#{$extout ? 'COPY' : 'INSTALL_DATA'}) #{f} $(@D#{sep})\n") | ||
27 | if defined?($installed_list) and !$extout | ||
28 | mfile.print("\t@echo #{dest}>>$(INSTALLED_LIST)\n") | ||
29 | -- | ||
30 | 2.0.0 | ||
31 | |||