~ chicken-core (chicken-5) deb584a5bd77b2d724fbebbe712914d5dbb40ce7
commit deb584a5bd77b2d724fbebbe712914d5dbb40ce7
Author: Peter Bex <Peter.Bex@xs4all.nl>
AuthorDate: Sun Sep 5 22:14:33 2010 +0200
Commit: Peter Bex <Peter.Bex@xs4all.nl>
CommitDate: Sun Sep 5 22:14:33 2010 +0200
Fix a couple of unescaped newlines
diff --git a/rules.make b/rules.make
index e97b514e..222c09e1 100644
--- a/rules.make
+++ b/rules.make
@@ -362,7 +362,7 @@ endif
# XXX Shouldn't this be part of the non-static lib part?
$(foreach setup-lib,$(SETUP_API_OBJECTS_1),\
- $(INSTALL_PROGRAM) $(INSTALL_PROGRAM_EXECUTABLE_OPTIONS)
+ $(INSTALL_PROGRAM) $(INSTALL_PROGRAM_EXECUTABLE_OPTIONS) \
$(setup-lib).so "$(DESTDIR)$(IEGGDIR)" $(NL))
ifndef STATICBUILD
@@ -372,7 +372,7 @@ ifneq ($(POSTINSTALL_PROGRAM),true)
"$(DESTDIR)$(IBINDIR)$(SEP)$(prog)" $(NL))
$(foreach apilib,$(SETUP_API_OBJECTS_1),\
- $(POSTINSTALL_PROGRAM) $(POSTINSTALL_PROGRAM_FLAGS)
+ $(POSTINSTALL_PROGRAM) $(POSTINSTALL_PROGRAM_FLAGS) \
"$(DESTDIR)$(IEGGDIR)$(SEP)$(apilib).so" $(NL))
$(foreach import-lib,$(IMPORT_LIBRARIES),\
Trap