2015-02-11 02:24:05 +01:00
|
|
|
From 953ff66677490c78ceff14afc0365f832079333a Mon Sep 17 00:00:00 2001
|
|
|
|
From: =?UTF-8?q?Marcus=20R=C3=BCckert?= <darix@nordisch.org>
|
|
|
|
Date: Tue, 21 Oct 2014 17:55:23 +0200
|
2022-12-07 13:28:20 +01:00
|
|
|
Subject: [PATCH 10/33] Try to load rbconfigpackagingsupport and fail
|
2015-02-11 02:24:05 +01:00
|
|
|
gracefully if not available
|
|
|
|
|
|
|
|
The file will patch ruby_install_name on unversioned ruby installations.
|
|
|
|
---
|
|
|
|
templates/gem_packages.spec.erb | 5 +++++
|
|
|
|
1 file changed, 5 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/templates/gem_packages.spec.erb b/templates/gem_packages.spec.erb
|
|
|
|
index 29873e5..a6ab58b 100644
|
|
|
|
--- a/templates/gem_packages.spec.erb
|
|
|
|
+++ b/templates/gem_packages.spec.erb
|
|
|
|
@@ -1,4 +1,9 @@
|
|
|
|
<%
|
|
|
|
+
|
|
|
|
+ begin
|
|
|
|
+ require 'rbconfigpackagingsupport'
|
|
|
|
+ rescue LoadError => ex
|
|
|
|
+ end
|
|
|
|
def self.patch_mod_full_name(path, mod_full_name)
|
|
|
|
path.gsub(/\/-/, "/#{mod_full_name}")
|
|
|
|
end
|
|
|
|
--
|
2022-12-07 13:28:20 +01:00
|
|
|
2.26.2
|
2015-02-11 02:24:05 +01:00
|
|
|
|