aboutsummaryrefslogtreecommitdiffstats
path: root/community/ruby-rugged/fix-extconf-version-check.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/ruby-rugged/fix-extconf-version-check.patch')
-rw-r--r--community/ruby-rugged/fix-extconf-version-check.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/community/ruby-rugged/fix-extconf-version-check.patch b/community/ruby-rugged/fix-extconf-version-check.patch
new file mode 100644
index 0000000000..30c65daaca
--- /dev/null
+++ b/community/ruby-rugged/fix-extconf-version-check.patch
@@ -0,0 +1,11 @@
+--- a/ext/rugged/extconf.rb
++++ b/ext/rugged/extconf.rb
+@@ -44,7 +44,7 @@
+
+ major = minor = nil
+
+- File.readlines(File.join(LIBGIT2_DIR, "include", "git2", "version.h")).each do |line|
++ File.readlines(File.join("/usr", "include", "git2", "version.h")).each do |line|
+ if !major && (matches = line.match(/^#define LIBGIT2_VER_MAJOR ([0-9]+)$/))
+ major = matches[1]
+ next