1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/ruby-rugged/fix-extconf-version-check.patch
2018-02-21 23:15:10 +01:00

11 lines
393 B
Diff

--- 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