Skip to content
Snippets Groups Projects
Commit 01d0aa06 authored by Marko Mecina's avatar Marko Mecina
Browse files

remove -e flag for echoing in Makefile

parent a3c0af00
No related branches found
No related tags found
No related merge requests found
...@@ -25,14 +25,17 @@ build: ...@@ -25,14 +25,17 @@ build:
rm -f $(CONFIGNATOR_CFG) rm -f $(CONFIGNATOR_CFG)
# create the new file containing the path to the configuration file # 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 "# 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 "[confignator-paths]" >> $(CONFIGNATOR_CFG)
@echo "basic-path = $(BASIC_PATH)" >> $(CONFIGNATOR_CFG) @echo "basic-path = $(BASIC_PATH)" >> $(CONFIGNATOR_CFG)
@echo "basic-cfg = $(BASIC_CONFI_CFG)" >> $(CONFIGNATOR_CFG) @echo "basic-cfg = $(BASIC_CONFI_CFG)" >> $(CONFIGNATOR_CFG)
@echo "docu = $(DOCU_INDEX_HTML)" >> $(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 "[confignator-logging]" >> $(CONFIGNATOR_CFG)
@echo -e "level = INFO\n" >> $(CONFIGNATOR_CFG) @echo "level = INFO" >> $(CONFIGNATOR_CFG)
@echo >> $(CONFIGNATOR_CFG)
# build the Python package # build the Python package
# python3 setup.py sdist; # python3 setup.py sdist;
python3 setup.py bdist_wheel python3 setup.py bdist_wheel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment