From 01d0aa06f56e842e1b50e2c835cf0cd902707693 Mon Sep 17 00:00:00 2001 From: Marko Mecina <marko.mecina@univie.ac.at> Date: Tue, 17 May 2022 16:57:54 +0200 Subject: [PATCH] remove -e flag for echoing in Makefile --- Tst/confignator/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Tst/confignator/Makefile b/Tst/confignator/Makefile index 0475e8d..5a6bdb9 100644 --- a/Tst/confignator/Makefile +++ b/Tst/confignator/Makefile @@ -25,14 +25,17 @@ build: rm -f $(CONFIGNATOR_CFG) # create the new file containing the path to the configuration file @echo "# This is the configuration file for the confignator and is a generated file, created during the installation of the confignator package." >> $(CONFIGNATOR_CFG) - @echo -e "# Modifications have to be done in the Makefile of the confignator package and a reinstall of it is needed!\n" >> $(CONFIGNATOR_CFG) + @echo "# Modifications have to be done in the Makefile of the confignator package and a reinstall of it is needed!" >> $(CONFIGNATOR_CFG) + @echo >> $(CONFIGNATOR_CFG) @echo "[confignator-paths]" >> $(CONFIGNATOR_CFG) @echo "basic-path = $(BASIC_PATH)" >> $(CONFIGNATOR_CFG) @echo "basic-cfg = $(BASIC_CONFI_CFG)" >> $(CONFIGNATOR_CFG) @echo "docu = $(DOCU_INDEX_HTML)" >> $(CONFIGNATOR_CFG) - @echo -e "log-file = ''\n" >> $(CONFIGNATOR_CFG) + @echo "log-file = ''" >> $(CONFIGNATOR_CFG) + @echo >> $(CONFIGNATOR_CFG) @echo "[confignator-logging]" >> $(CONFIGNATOR_CFG) - @echo -e "level = INFO\n" >> $(CONFIGNATOR_CFG) + @echo "level = INFO" >> $(CONFIGNATOR_CFG) + @echo >> $(CONFIGNATOR_CFG) # build the Python package # python3 setup.py sdist; python3 setup.py bdist_wheel -- GitLab