Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Verwiebe <info@jensverwiebe.de>2011-10-05 12:58:32 +0400
committerJens Verwiebe <info@jensverwiebe.de>2011-10-05 12:58:32 +0400
commit39300a507962a536971d4c6b94ce2ec77a050e32 (patch)
treeee8b54b336d09fd5c4d65e09b28c33c754e55917 /SConstruct
parent7058a8e2aefebe78412fb485870216225ddd9042 (diff)
OSX: Correct copy/paste error and exclude endianess switch from darwin
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index eacf18266f0..b2affe1b6b7 100644
--- a/SConstruct
+++ b/SConstruct
@@ -338,7 +338,7 @@ if env['BF_NO_ELBEEM'] == 1:
env['CCFLAGS'].append('-DDISABLE_ELBEEM')
-if btools.ENDIAN == "big":
+if btools.ENDIAN == "big" and not env['OURPLATFORM']=='darwin':
env['CPPFLAGS'].append('-D__BIG_ENDIAN__')
env['CXXFLAGS'].append('-D__BIG_ENDIAN__')
env['CCFLAGS'].append('-D__BIG_ENDIAN__')