diff options
author | bjarni <bjarni@openttd.org> | 2006-02-27 16:58:26 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2006-02-27 16:58:26 +0000 |
commit | 3f60ef07b20ca87121f84ebe77cdad000fd4d5ad (patch) | |
tree | 5ac46d5cbaf4a28f4d82fb021a754ed954ceb217 /os/macosx | |
parent | d6cb4c82da67b977f34119d443e6749d03b48213 (diff) | |
download | openttd-3f60ef07b20ca87121f84ebe77cdad000fd4d5ad.tar.xz |
(svn r3679) -Fix: [OSX] fixed warning introduced in r3670 about permission denied in G5_detector.c when compiling without having Makefile.config
Diffstat (limited to 'os/macosx')
-rw-r--r-- | os/macosx/Makefile.setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/macosx/Makefile.setup b/os/macosx/Makefile.setup index af4fd2e55..7cfb6d965 100644 --- a/os/macosx/Makefile.setup +++ b/os/macosx/Makefile.setup @@ -27,7 +27,7 @@ ifndef UNIVERSAL_BINARY ifndef JAGUAR ifeq ($(shell uname), Darwin) # it's a hardware mac, not crosscompiling -$(shell $(CC_HOST) os/macosx/G5_detector.c -o os/macosx/G5_detector) +$(shell $(CC) os/macosx/G5_detector.c -o os/macosx/G5_detector) IS_G5:=$(shell os/macosx/G5_detector) endif endif |