On 03/06/22 12:12, John Kacur wrote: > @@ -169,7 +169,7 @@ class Kcompile(CommandLineLoad): > if not os.path.exists(tarfile): > raise rtevalRuntimeError(self, " tarfile %s does not exist!" % tarfile) > self.source = tarfile > - kernel_prefix = re.search(r"linux-\d\.\d", self.source).group(0) > + kernel_prefix = re.search(r"linux-\d{1,2}\.\d{1,3}", self.source).group(0) Sorry about that one! That looks OK to me, though why not go for "linux-\d+\.\d+" ?