From: "Luis R. Rodriguez" <[email protected]>

Vanilla Linux kernels are being used but the directory
file naming for for the kernels are Ubuntu specific,
clarify that.

Signed-off-by: Luis R. Rodriguez <[email protected]>
---
 devel/ckmake |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/devel/ckmake b/devel/ckmake
index bb81eb4..d77da62 100755
--- a/devel/ckmake
+++ b/devel/ckmake
@@ -220,7 +220,7 @@ def sig_handler(signal, frame):
        clean()
        sys.exit(-2)
 
-def get_rel_spec(rel):
+def get_rel_spec_ubuntu(rel):
        if ("rc" in rel):
                m = re.match(r"v*(?P<VERSION>\d+)\.+" \
                             "(?P<PATCHLEVEL>\d+)[.]+" \
@@ -325,7 +325,7 @@ class kernel_set():
                for dirname, dirnames, filenames in os.walk(modules):
                        dirnames.sort()
                        for subdirname in dirnames:
-                               specifics = get_rel_spec(subdirname)
+                               specifics = get_rel_spec_ubuntu(subdirname)
                                if (not specifics):
                                        continue
                                rc = False
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe backports" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to