comparison src/build-scons.mk @ 3610:566fd51378f2

Use system python in native mingw * Makefile.in: if native mingw build, add python requirement and dont build build-python. * src/build-scons.mk: in native mingw, do not have dependancy on build-python.
author John Donoghue
date Mon, 09 Jun 2014 08:00:17 -0400
parents 7ec984651a4f
children 57e25cd3e76b
comparison
equal deleted inserted replaced
3609:360eff7d9c06 3610:566fd51378f2
6 $(PKG)_VERSION := 2.3.1 6 $(PKG)_VERSION := 2.3.1
7 $(PKG)_CHECKSUM := 775e715e49fe5fd8e1d29551a296fdc9267509e7 7 $(PKG)_CHECKSUM := 775e715e49fe5fd8e1d29551a296fdc9267509e7
8 $(PKG)_SUBDIR := scons-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := scons-$($(PKG)_VERSION)
9 $(PKG)_FILE := scons-$($(PKG)_VERSION).tar.gz 9 $(PKG)_FILE := scons-$($(PKG)_VERSION).tar.gz
10 $(PKG)_URL := http://prdownloads.sourceforge.net/scons/$($(PKG)_FILE) 10 $(PKG)_URL := http://prdownloads.sourceforge.net/scons/$($(PKG)_FILE)
11 $(PKG)_DEPS := build-python 11 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
12 $(PKG)_DEPS :=
13 else
14 $(PKG)_DEPS := build-python
15 endif
12 16
13 define $(PKG)_UPDATE 17 define $(PKG)_UPDATE
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; 18 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
15 echo $($(PKG)_VERSION) 19 echo $($(PKG)_VERSION)
16 endef 20 endef