Browse Source

support/scripts: fix pycompile for short filenames

Signed-off-by: Bert Outtier <outtierbert@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 6fdc878d73938e70335a667a831ded67a15df53c)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bert Outtier 4 years ago
parent
commit
ea9fdc21ef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      support/scripts/pycompile.py

+ 1 - 1
support/scripts/pycompile.py

@@ -28,7 +28,7 @@ def compile_one(host_path, strip_root=None):
     if os.path.islink(host_path) or not os.path.isfile(host_path):
     if os.path.islink(host_path) or not os.path.isfile(host_path):
         return  # only compile real files
         return  # only compile real files
 
 
-    if not re.match(r"^[_A-Za-z][_A-Za-z0-9]+\.py$",
+    if not re.match(r"^[_A-Za-z][_A-Za-z0-9]*\.py$",
                     os.path.basename(host_path)):
                     os.path.basename(host_path)):
         return  # only compile "importable" python modules
         return  # only compile "importable" python modules