Blame SOURCES/ruby-2.6.0-Improve-test-compatibility-with-CMake-2.8.patch

a54e24
From 5d05164c79f5f93e41100e33f5de5f96291b1dd2 Mon Sep 17 00:00:00 2001
a54e24
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
a54e24
Date: Wed, 9 Jan 2019 18:23:28 +0100
a54e24
Subject: [PATCH] Improve test compatibility with CMake 2.8.
a54e24
a54e24
CMake 2.8 does not support the "LANGUAGES" keyword yet.
a54e24
---
a54e24
 test/rubygems/test_gem_ext_cmake_builder.rb | 2 +-
a54e24
 1 file changed, 1 insertion(+), 1 deletion(-)
a54e24
a54e24
diff --git a/test/rubygems/test_gem_ext_cmake_builder.rb b/test/rubygems/test_gem_ext_cmake_builder.rb
a54e24
index 6e629080..757266ca 100644
a54e24
--- a/test/rubygems/test_gem_ext_cmake_builder.rb
a54e24
+++ b/test/rubygems/test_gem_ext_cmake_builder.rb
a54e24
@@ -25,7 +25,7 @@ class TestGemExtCmakeBuilder < Gem::TestCase
a54e24
     File.open File.join(@ext, 'CMakeLists.txt'), 'w' do |cmakelists|
a54e24
       cmakelists.write <<-eo_cmake
a54e24
 cmake_minimum_required(VERSION 2.6)
a54e24
-project(self_build LANGUAGES NONE)
a54e24
+project(self_build NONE)
a54e24
 install (FILES test.txt DESTINATION bin)
a54e24
       eo_cmake
a54e24
     end
a54e24
-- 
a54e24
2.20.1
a54e24