You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/09/27 15:52:28 UTC

svn commit: r1001742 - /commons/proper/daemon/trunk/src/native/windows/include/Makefile.inc

Author: sebb
Date: Mon Sep 27 13:52:28 2010
New Revision: 1001742

URL: http://svn.apache.org/viewvc?rev=1001742&view=rev
Log:
Oops - does not work if PROCESSOR_ARCHITECTURE is not defined

Modified:
    commons/proper/daemon/trunk/src/native/windows/include/Makefile.inc

Modified: commons/proper/daemon/trunk/src/native/windows/include/Makefile.inc
URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/windows/include/Makefile.inc?rev=1001742&r1=1001741&r2=1001742&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/windows/include/Makefile.inc (original)
+++ commons/proper/daemon/trunk/src/native/windows/include/Makefile.inc Mon Sep 27 13:52:28 2010
@@ -100,8 +100,8 @@ MT = mt.exe
 !IF !DEFINED(BUILD_CPU) || "$(BUILD_CPU)" == ""
 !IF "$(PROCESSOR_ARCHITECTURE)" == ""
 !IF "$(PROCESSOR_ARCHITEW6432)" == ""
-# Default to X86
-BUILD_CPU=X86
+# Default to x86, will be upcased later
+BUILD_CPU=x86
 !ELSE
 BUILD_CPU=$(PROCESSOR_ARCHITEW6432)
 !ENDIF