File: Skip-git-if-not-installed.patch

package info (click to toggle)
libcap2 1%3A2.75-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,068 kB
  • sloc: ansic: 9,181; sh: 1,138; makefile: 812; cpp: 45; asm: 16
file content (25 lines) | stat: -rw-r--r-- 814 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From: Christian Kastner <ckk@debian.org>
Date: Tue, 6 Feb 2024 20:12:02 +0100
Subject: Skip git if not installed

This is only used during the clean stage. For a typical Debian package build,
git will not be installed.

Bug-Debian: https://bugs.debian.org/1046986
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 24196a0..7f56aea 100644
--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,7 @@ distclean: clean
 	$(BUILD_FGREP) "#define LIBPSX_MAJOR $(VERSION)" psx/psx_syscall.h
 	$(BUILD_FGREP) "#define LIBPSX_MINOR $(MINOR)" psx/psx_syscall.h
 	@echo "Now validate that everything is checked in to a clean tree.."
-	test -z "$$(git status --ignored -s)"
+	test -z "$$(test -x /usr/bin/git && git status --ignored -s)"
 	@echo "All good!"
 
 release: distclean