diff options
-rw-r--r-- | lib/replace/wafsamba.py | 12 | ||||
-rw-r--r-- | source4/wscript_build | 3 |
2 files changed, 0 insertions, 15 deletions
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 diff --git a/source4/wscript_build b/source4/wscript_build index e6841f3aec..9fdc6b9ecf 100644 --- a/source4/wscript_build +++ b/source4/wscript_build @@ -62,6 +62,3 @@ bld.BUILD_SUBDIR('../libcli/drsuapi') bld.BUILD_SUBDIR('../libcli/samsync') bld.BUILD_SUBDIR('../libgpo') bld.BUILD_SUBDIR('../libcli/named_pipe_auth') - -# check if we have any circular build dependencies -bld.CHECK_DEPENDENCIES() |