From 8e81ea7c3ad707618e94d9f8f0626ec8d0609426 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 17 Mar 2010 20:21:26 +1100 Subject: build: on the fly dependency checking --- lib/replace/wafsamba.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'lib/replace') diff --git a/lib/replace/wafsamba.py b/lib/replace/wafsamba.py index bb52b90df9..8596dfb37b 100644 --- a/lib/replace/wafsamba.py +++ b/lib/replace/wafsamba.py @@ -199,18 +199,6 @@ def CHECK_TARGET_DEPENDENCY(bld, target): cache = BUILD_CACHE(bld, 'LIB_DEPS') FULL_DEPENDENCIES(bld, cache, target, { target:True }, target) -############################################################ -# check our build dependencies for circular dependencies -def CHECK_DEPENDENCIES(bld): - cache = BUILD_CACHE(bld, 'LIB_DEPS') - print "Checking for circular dependencies" - for target in cache: - CHECK_TARGET_DEPENDENCY(bld, target) - print "No circular dependencies" - -Build.BuildContext.CHECK_DEPENDENCIES = CHECK_DEPENDENCIES - - ################################################################ # add to the dependency list. Return a new dependency list with # any circular dependencies removed -- cgit