From dce4155d801145b7946c2e7a8bb5566e4890c95b Mon Sep 17 00:00:00 2001 From: David Rheinsberg Date: Wed, 15 Apr 2020 16:34:21 +0200 Subject: [PATCH] build: fix makefile comments Comments must not be indented in makefiles, otherwise they might end up being interpreted as rules. Simply drop the indentation and move it into the comments itself. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 94eeb674..5d99627f 100644 --- a/Makefile +++ b/Makefile @@ -165,9 +165,9 @@ release: @echo " * ..." @echo @echo -n " Contributions from: " - # We omit the contributor list if `git log` fails. If you hit this, - # consider fetching missing tags via `git fetch --tags`, or just copy - # this command and remove the stderr-redirect. +# We omit the contributor list if `git log` fails. If you hit this, +# consider fetching missing tags via `git fetch --tags`, or just copy +# this command and remove the stderr-redirect. @echo `( git log --format='%an, ' v$(VERSION)..HEAD 2>/dev/null | sort -u | tr -d '\n' | sed 's/, $$//' ) || echo` @echo @echo " - Location, YYYY-MM-DD"