Skip to content

Commit 6247c19

Browse files
committed
make: Fix OR_TOOLS_PATCH computation
1 parent 94f3733 commit 6247c19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

makefiles/Makefile.port.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ ifeq ($(OR_TOOLS_PATCH),)
288288
$(warning you are using a shallow copy)
289289
OR_TOOLS_PATCH:= 9999
290290
else
291-
OR_TOOLS_PATCH:= $(shell git rev-list --count --quiet v$(OR_TOOLS_MAJOR).0..HEAD || echo 0)
291+
OR_TOOLS_PATCH:= $(shell git rev-list --count v$(OR_TOOLS_MAJOR).0..HEAD || echo 0)
292292
endif
293293
else
294294
$(warning you are not using a .git archive)

0 commit comments

Comments
 (0)