Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
[droid] - nearly forgot to make use of the DARWIN_NATIVE_ARCH in libs…
Browse files Browse the repository at this point in the history
…quish and TexturePacker ;)
  • Loading branch information
Memphiz authored and Cory Fields committed Aug 3, 2012
1 parent 41cce90 commit 250e9ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/libsquish/Makefile.in
Expand Up @@ -25,7 +25,7 @@ NATIVE_LIB=libsquish-native.so
CLEAN_FILES+=$(NATIVE_LIB)

ifeq ($(findstring Darwin,$(shell uname -s)),Darwin)
NATIVE_ARCH=$(shell echo $(CXXFLAGS) | grep x86_64 >/dev/null && echo -m64 || echo -m32)
NATIVE_ARCH=@DARWIN_NATIVE_ARCH@
endif

all: $(LIB) $(NATIVE_LIB)
Expand Down
2 changes: 1 addition & 1 deletion tools/TexturePacker/Makefile.in
Expand Up @@ -16,7 +16,7 @@ NATIVE_ROOT_PATH=@USE_TEXTUREPACKER_NATIVE_ROOT@
ifdef NATIVE_ROOT_PATH
ifeq ($(findstring osx,@ARCH@),osx)
DEFINES += -DTARGET_DARWIN
NATIVE_ARCH=$(shell echo $(CXXFLAGS) | grep x86_64 >/dev/null && echo -m64 || echo -m32)
NATIVE_ARCH=@DARWIN_NATIVE_ARCH@
RPATH=
endif
NATIVE_CXXFLAGS+= -I. \
Expand Down

0 comments on commit 250e9ca

Please sign in to comment.