rules: fix broken commitcount on alpine system
authorChristian Marangi <ansuelsmth@gmail.com>
Sat, 17 Dec 2022 15:39:00 +0000 (16:39 +0100)
committerChristian Marangi <ansuelsmth@gmail.com>
Sun, 18 Dec 2022 13:19:07 +0000 (14:19 +0100)
To generate commitcount we use grep --max-count. This is not present on
alpine grep and cause wrong generation. Use -m as it's just the short
version of --max-count and more portable.

Fixes: #11200
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
rules.mk

index 2de43d490d6c041f11f9c41d78c34a71833d3c30..e17852e02177e3b6b01cd9aff655a16381181d73 100644 (file)
--- a/rules.mk
+++ b/rules.mk
@@ -409,7 +409,7 @@ $(shell \
   if git log -1 >/dev/null 2>/dev/null; then \
     if [ -n "$(1)" ]; then \
       last_bump="$$(git log --pretty=format:'%h %s' . | \
-        grep --max-count=1 -e ': [uU]pdate to ' -e ': [bB]ump to ' | \
+        grep -1 -e ': [uU]pdate to ' -e ': [bB]ump to ' | \
         cut -f 1 -d ' ')"; \
     fi; \
     if [ -n "$$last_bump" ]; then \