From 62b3cd68d750f5cd2d67cbf4192b71f5d275776d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Wed, 27 May 2020 09:40:48 +0200 Subject: [PATCH] makefile: change the indentation in release target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit c886e1be changed the indentation of the NEWS file. This commit changes also the indentation in the news template produced by `make release`. Also - in front of the Location was changed to — to please David. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4e0fbf081..b94cb40d6 100644 --- a/Makefile +++ b/Makefile @@ -233,17 +233,17 @@ release: @echo "--------------------------------------------------------------------------------" @echo "## CHANGES WITH $(NEXT_VERSION):" @echo - @echo " * ..." + @echo " * ..." @echo - @echo " * ..." + @echo " * ..." @echo - @echo -n " Contributions from: " + @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. @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" + @echo "— Location, YYYY-MM-DD" @echo "--------------------------------------------------------------------------------" @echo @echo " To get a list of changes since the last release, you may use:"