From: Peter Korsgaard Date: Tue, 29 Dec 2015 22:46:10 +0000 (+0100) Subject: graph-depends: correct is_dep() comment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f62ce058be91a999716210a86f968be5bd515c4f;p=buildroot.git graph-depends: correct is_dep() comment The uncached variant is called is_dep_uncached(), not is_dep_full(). Signed-off-by: Peter Korsgaard --- diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index e91c9c5b90..fd8ad2f590 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -270,7 +270,7 @@ def is_dep_uncached(pkg,pkg2,deps): pass return False -# See is_dep_full() above; this is the cached version. +# See is_dep_uncached() above; this is the cached version. def is_dep(pkg,pkg2,deps): try: return is_dep_cache_lookup(pkg, pkg2)