~ chicken-core (chicken-5) fd42a00f82e2c948f1142acd30bdb48dd43b0509
commit fd42a00f82e2c948f1142acd30bdb48dd43b0509 Author: Evan Hanson <evhan@foldling.org> AuthorDate: Tue Mar 19 12:05:45 2019 +1300 Commit: Evan Hanson <evhan@foldling.org> CommitDate: Wed Mar 20 09:18:02 2019 +1300 Remove escaped newline from install make output This one command was split over two lines, ruining what was otherwise a beautiful stream of single-line install commands. diff --git a/rules.make b/rules.make index 793e38b9..e48f083b 100644 --- a/rules.make +++ b/rules.make @@ -339,8 +339,7 @@ install-bin: $(TARGETS) install-libs install-dev $(INSTALL_PROGRAM) $(INSTALL_PROGRAM_EXECUTABLE_OPTIONS) \ $(prog)$(EXE) "$(DESTDIR)$(IBINDIR)" $(NL)) - $(INSTALL_PROGRAM) $(INSTALL_PROGRAM_EXECUTABLE_OPTIONS) $(CHICKEN_DEBUGGER_PROGRAM) \ - "$(DESTDIR)$(IBINDIR)" + $(INSTALL_PROGRAM) $(INSTALL_PROGRAM_EXECUTABLE_OPTIONS) $(CHICKEN_DEBUGGER_PROGRAM) "$(DESTDIR)$(IBINDIR)" ifdef STATICBUILD $(foreach lib,$(IMPORT_LIBRARIES),\Trap