Updated Branches:
  refs/heads/master 88764c144 -> df552338d

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/df552338
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/df552338
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/df552338

Branch: refs/heads/master
Commit: df552338d14e63f1979f5c9d3888ea9a135fc26b
Parents: 88764c1
Author: Nick Wellnhofer <[email protected]>
Authored: Sun Dec 23 02:19:01 2012 +0100
Committer: Nick Wellnhofer <[email protected]>
Committed: Fri Jan 4 21:50:44 2013 +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/df552338/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;
     }

Reply via email to