You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2012/12/23 23:00:11 UTC

[lucy-commits] [3/7] git commit: refs/heads/c-bindings-wip1 - Fix obj_ext on POSIX systems

Fix obj_ext on POSIX systems


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/f840b746
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/f840b746
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/f840b746

Branch: refs/heads/c-bindings-wip1
Commit: f840b7466547df6111bff27fef2720fabd64132d
Parents: 0534e4b
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sun Dec 23 02:19:01 2012 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sun Dec 23 03:32:54 2012 +0100

----------------------------------------------------------------------
 charmonizer/src/Charmonizer/Core/OperatingSystem.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/f840b746/charmonizer/src/Charmonizer/Core/OperatingSystem.c
----------------------------------------------------------------------
diff --git a/charmonizer/src/Charmonizer/Core/OperatingSystem.c b/charmonizer/src/Charmonizer/Core/OperatingSystem.c
index c897285..2593e2a 100644
--- a/charmonizer/src/Charmonizer/Core/OperatingSystem.c
+++ b/charmonizer/src/Charmonizer/Core/OperatingSystem.c
@@ -47,7 +47,7 @@ chaz_OS_init(void) {
     if (chaz_Util_can_open_file("/dev/null")) {
         strcpy(chaz_OS.dev_null, "/dev/null");
         strcpy(chaz_OS.exe_ext, "");
-        strcpy(chaz_OS.obj_ext, "");
+        strcpy(chaz_OS.obj_ext, ".o");
         strcpy(chaz_OS.local_command_start, "./");
         chaz_OS.shell_type = CHAZ_OS_POSIX;
     }