[SCM] Lisaac compiler branch, master, updated. lisaac-0.12-670-g017005d
ontologiae
ontologiae at gmail.com
Sun Nov 28 14:09:17 UTC 2010
The following commit has been merged in the master branch:
commit 017005d77007f0056562a4a399136222e3df7d87
Author: ontologiae <ontologiae at gmail.com>
Date: Sun Nov 28 15:07:23 2010 +0100
Work around system() problems
diff --git a/lib/internal/os_support/unix/system/environment.li b/lib/internal/os_support/unix/system/environment.li
index 37de370..05fc2a8 100644
--- a/lib/internal/os_support/unix/system/environment.li
+++ b/lib/internal/os_support/unix/system/environment.li
@@ -59,8 +59,9 @@ Section Public
// To execute a `system_command_line' as for example, "ls -l" on UNIX.
// The `Result' depends of the actual operating system. As an exemple,
// this `execute' feature is under UNIX the equivalent of a `system' call.
- (
+ (
? { system_command_line != NULL};
+ system_command_line.println;
basic_system_execute_command (system_command_line.to_external)
);
diff --git a/make.lip b/make.lip
index 513c825..cab872e 100644
--- a/make.lip
+++ b/make.lip
@@ -161,7 +161,7 @@ Section Private
} else {
("\nERROR: `" + lib + "' library for GCC not found.\n").print;
run "rm __tmp__.c";
- die_with_code exit_failure_code;
+ //die_with_code exit_failure_code;
};
};
);
--
Lisaac compiler
More information about the Lisaac-commits
mailing list