1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/libgcab/no-git.patch
2022-12-13 03:36:17 +01:00

14 lines
407 B
Diff

prevents a git call that fails due to git ceiling set
diff --git a/meson.build b/meson.build
index 15fd5cd..6c1078d 100644
--- a/meson.build
+++ b/meson.build
@@ -7,7 +7,7 @@ project('gcab', 'c',
git_version = []
git = find_program('git', required: false)
-if git.found()
+if false
git_version = run_command(git, 'describe', '--abbrev=4', '--dirty', check: true).stdout().strip().split('-')
endif