During config/build process in verbose mode, waf produces
about 2k repetitions of this warning:
compat: "uselib_local" is deprecated, replace by "use"
which clutters the build log.
Comment this warning out for now until it will be
fixed properly.
Gbp-Pq: Name silence-waf-uselib_local.diff
seen = set()
seen_uselib = set()
tmp = Utils.deque(names) # consume a copy of the list of names
- if tmp:
- if Logs.verbose:
- Logs.warn('compat: "uselib_local" is deprecated, replace by "use"')
+ #if tmp:
+ # if Logs.verbose:
+ # Logs.warn('compat: "uselib_local" is deprecated, replace by "use"')
while tmp:
lib_name = tmp.popleft()
# visit dependencies only once