From e6c9f4d4da83f0eb5400f1eb95a4884b43d89ea0 Mon Sep 17 00:00:00 2001 From: JanHoefelmeyer Date: Tue, 31 Jan 2023 14:43:53 +0100 Subject: [PATCH] Adds linebreaks into overly long lines in 'make dist' in the Makefile --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b567478..adf7230 100644 --- a/Makefile +++ b/Makefile @@ -76,9 +76,12 @@ dist: build_linux build_win mkdir -p dist mkdir -p dist/$(DISTDIR)-windows-amd64/bin-windows-amd64 cp README.md dist/$(DISTDIR)-windows-amd64 - cp bin-windows-amd64/csaf_uploader.exe bin-windows-amd64/csaf_validator.exe bin-windows-amd64/csaf_checker.exe bin-windows-amd64/csaf_downloader.exe dist/$(DISTDIR)-windows-amd64/bin-windows-amd64/ + cp bin-windows-amd64/csaf_uploader.exe bin-windows-amd64/csaf_validator.exe \ +bin-windows-amd64/csaf_checker.exe bin-windows-amd64/csaf_downloader.exe \ +dist/$(DISTDIR)-windows-amd64/bin-windows-amd64/ mkdir -p dist/$(DISTDIR)-windows-amd64/docs - cp docs/csaf_uploader.md docs/csaf_validator.md docs/csaf_checker.md docs/csaf_downloader.md dist/$(DISTDIR)-windows-amd64/docs + cp docs/csaf_uploader.md docs/csaf_validator.md docs/csaf_checker.md \ +docs/csaf_downloader.md dist/$(DISTDIR)-windows-amd64/docs mkdir dist/$(DISTDIR)-gnulinux-amd64 cp -r README.md docs bin-linux-amd64 dist/$(DISTDIR)-gnulinux-amd64 cd dist/ ; zip -r $(DISTDIR)-windows-amd64.zip $(DISTDIR)-windows-amd64/