Skip to content

Commit

Permalink
make: Fix OR_TOOLS_PATCH computation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Aug 29, 2024
1 parent 94f3733 commit 6247c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefiles/Makefile.port.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6247c19

Please sign in to comment.