~ chicken-core (chicken-5) a30edf399dc1dfed81c12e8375d89472495a9d1c


commit a30edf399dc1dfed81c12e8375d89472495a9d1c
Author:     Peter Bex <peter.bex@xs4all.nl>
AuthorDate: Tue Feb 18 22:03:51 2014 +0100
Commit:     Mario Domenech Goulart <mario.goulart@gmail.com>
CommitDate: Thu Feb 20 19:51:46 2014 -0300

    On Solaris, ginstall requires the -m switch and its numerical argument to be separated by whitespace
    
    Signed-off-by: Mario Domenech Goulart <mario.goulart@gmail.com>

diff --git a/defaults.make b/defaults.make
index a92630a7..6367b78b 100644
--- a/defaults.make
+++ b/defaults.make
@@ -194,11 +194,11 @@ INSTALL_PROGRAM_STATIC_LIBRARY_OPTIONS ?= /Y
 INSTALL_PROGRAM_EXECUTABLE_OPTIONS ?= /Y
 INSTALL_PROGRAM_FILE_OPTIONS ?= /Y
 else
-INSTALL_PROGRAM_SHARED_LIBRARY_OPTIONS ?= -m755
-INSTALL_PROGRAM_STATIC_LIBRARY_OPTIONS ?= -m644
-INSTALL_PROGRAM_EXECUTABLE_OPTIONS ?= -m755
-INSTALL_PROGRAM_FILE_OPTIONS ?= -m644
-MAKEDIR_COMMAND_OPTIONS ?= -d -m755
+INSTALL_PROGRAM_SHARED_LIBRARY_OPTIONS ?= -m 755
+INSTALL_PROGRAM_STATIC_LIBRARY_OPTIONS ?= -m 644
+INSTALL_PROGRAM_EXECUTABLE_OPTIONS ?= -m 755
+INSTALL_PROGRAM_FILE_OPTIONS ?= -m 644
+MAKEDIR_COMMAND_OPTIONS ?= -d -m 755
 endif
 ASSEMBLER_OPTIONS ?= $(C_COMPILER_OPTIONS)
 ASSEMBLER_OUTPUT_OPTION ?= -o
Trap