# HG changeset patch # User John Donoghue # Date 1392247382 18000 # Node ID a551b373abc42c398ee28f9c3c5f960c81a4d2b3 # Parent 598f4d2af02ed198fde6b5e044de141e4a9a175e 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. diff -r 598f4d2af02e -r a551b373abc4 src/build-python.mk --- a/src/build-python.mk Fri Feb 07 20:33:38 2014 -0500 +++ b/src/build-python.mk Wed Feb 12 18:23:02 2014 -0500 @@ -8,7 +8,10 @@ $(PKG)_SUBDIR := Python-$($(PKG)_VERSION) $(PKG)_FILE := Python-$($(PKG)_VERSION).tgz $(PKG)_URL := http://www.python.org/ftp/python/2.7.6/$($(PKG)_FILE) -$(PKG)_DEPS := build-gcc +$(PKG)_DEPS := +ifneq ($(USE_SYSTEM_GCC),yes) + $(PKG)_DEPS += build-gcc +endif define $(PKG)_UPDATE echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;