comparison src/build-python.mk @ 3515:a551b373abc4

build-python: no depeancy on build-gcc if using system gcc. * src/build-python.mk: only add build-gcc as a dependancy if not using system gcc.
author John Donoghue <john.donoghue@ieee.org>
date Wed, 12 Feb 2014 18:23:02 -0500
parents 13be64f9f16d
children a89ff94653de
comparison
equal deleted inserted replaced
3514:598f4d2af02e 3515:a551b373abc4
6 $(PKG)_VERSION := 2.7.6 6 $(PKG)_VERSION := 2.7.6
7 $(PKG)_CHECKSUM := 8328d9f1d55574a287df384f4931a3942f03da64 7 $(PKG)_CHECKSUM := 8328d9f1d55574a287df384f4931a3942f03da64
8 $(PKG)_SUBDIR := Python-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := Python-$($(PKG)_VERSION)
9 $(PKG)_FILE := Python-$($(PKG)_VERSION).tgz 9 $(PKG)_FILE := Python-$($(PKG)_VERSION).tgz
10 $(PKG)_URL := http://www.python.org/ftp/python/2.7.6/$($(PKG)_FILE) 10 $(PKG)_URL := http://www.python.org/ftp/python/2.7.6/$($(PKG)_FILE)
11 $(PKG)_DEPS := build-gcc 11 $(PKG)_DEPS :=
12 ifneq ($(USE_SYSTEM_GCC),yes)
13 $(PKG)_DEPS += build-gcc
14 endif
12 15
13 define $(PKG)_UPDATE 16 define $(PKG)_UPDATE
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; 17 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
15 echo $($(PKG)_VERSION) 18 echo $($(PKG)_VERSION)
16 endef 19 endef