From 6247c19345d7e7d8e3a7c7d7c069762b7bf40772 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Thu, 29 Aug 2024 21:23:12 +0200 Subject: [PATCH] make: Fix OR_TOOLS_PATCH computation --- makefiles/Makefile.port.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefiles/Makefile.port.mk b/makefiles/Makefile.port.mk index 1171918f0b5..97a12f49cd2 100644 --- a/makefiles/Makefile.port.mk +++ b/makefiles/Makefile.port.mk @@ -288,7 +288,7 @@ ifeq ($(OR_TOOLS_PATCH),) $(warning you are using a shallow copy) OR_TOOLS_PATCH:= 9999 else - OR_TOOLS_PATCH:= $(shell git rev-list --count --quiet v$(OR_TOOLS_MAJOR).0..HEAD || echo 0) + OR_TOOLS_PATCH:= $(shell git rev-list --count v$(OR_TOOLS_MAJOR).0..HEAD || echo 0) endif else $(warning you are not using a .git archive)