fixed linux build because darwin fix broke it

This commit is contained in:
Hudson Build Application account 2010-02-05 17:15:12 -07:00
parent 103717a3f2
commit 48cc14f8ed

View File

@ -77,19 +77,19 @@ input = List
build-cxx = g++ build-cxx = g++
build-cc = gcc build-cc = gcc
cxx = $(build-cxx) mflag =
cc = $(build-cc)
ifneq ($(platform),darwin) ifneq ($(platform),darwin)
ifeq ($(arch),i386) ifeq ($(arch),i386)
cxx = $(cxx) -m32 mflag = -m32
cc = $(cc) -m32
endif endif
ifeq ($(arch),x86_64) ifeq ($(arch),x86_64)
cxx = $(cxx) -m64 mflag = -m64
cc = $(cc) -m64
endif endif
endif endif
cxx = $(build-cxx) $(mflag)
cc = $(build-cc) $(mflag)
ar = ar ar = ar
ranlib = ranlib ranlib = ranlib
dlltool = dlltool dlltool = dlltool