apr glew: portability fix for $(MAKE)

This commit is contained in:
Tony Theodore 2014-11-30 21:02:46 +11:00
parent 4a758acf46
commit e94aa0a901
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ endef
define $(PKG)_BUILD
cp -Rp '$(1)' '$(1).native'
cd '$(1).native' && ./configure
cd '$(1).native' && make tools/gen_test_char \
cd '$(1).native' && $(MAKE) tools/gen_test_char \
CFLAGS='-DNEED_ENHANCED_ESCAPES'
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \

View File

@ -20,7 +20,7 @@ define $(PKG)_BUILD
echo 'mxe: lib $(if $(BUILD_STATIC), lib/$$(LIB.STATIC) lib/$$(LIB.STATIC.MX), lib/$$(LIB.SHARED) lib/$$(LIB.SHARED.MX))' >> '$(1)/Makefile'
# GCC 4.8.2 seems to miscompile the shared DLL with -O2
make -C '$(1)' \
$(MAKE) -C '$(1)' \
GLEW_DEST=$(PREFIX)/$(TARGET) \
SYSTEM=linux-mingw32 \
CC=$(TARGET)-gcc \