summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2006-03-04 12:09:10 +0000
committerbjarni <bjarni@openttd.org>2006-03-04 12:09:10 +0000
commit1ebf2fd175c8be02726f48d21a978d79243a9d7b (patch)
tree1a0845bf3b2731c1af97adf6c9b1edc9c297a532 /Makefile
parentca0862c3f4baf73549326ec2ec63ac0630cf2c95 (diff)
downloadopenttd-1ebf2fd175c8be02726f48d21a978d79243a9d7b.tar.xz
(svn r3759) -Fix: [OSX] don't set CC_HOST to i686 gcc when compiling universal binaries on PPC without any Makefile.config. Introduced in 3674 (before that i686 used PPC as CC_HOST, but nobody noticed that)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 16ebb6508..590a82fa7 100644
--- a/Makefile
+++ b/Makefile
@@ -279,11 +279,6 @@ ifndef WINDRES
WINDRES = windres
endif
-# Check if we have a new target
-ifdef CC_TARGET
-CC = $(CC_TARGET)
-endif
-
# Check if CC_HOST is defined. If not, it is CC
ifndef CC_HOST
CC_HOST = $(CC)
@@ -292,6 +287,10 @@ ifndef CFLAGS_HOST
CFLAGS_HOST = $(BASECFLAGS)
endif
+# Check if we have a new target
+ifdef CC_TARGET
+CC = $(CC_TARGET)
+endif
CC_VERSION = $(shell $(CC) -dumpversion | cut -c 1,3)