]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Fixed splitting error
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 10 Nov 2009 19:59:09 +0000 (20:59 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 10 Nov 2009 19:59:09 +0000 (20:59 +0100)
import_gcry.py

index 9a53a356aa3baffacc88b272568c429f05f67198..ca03729af40e05e20e0b99e3d107729968ef62b8 100644 (file)
@@ -56,7 +56,7 @@ for cipher_file in cipher_files:
             if hold:
                 hold = False
                 # We're optimising for size.
-                elif not re.match ("(run_selftests|selftest|_gcry_aes_c.._..c|_gcry_[a-z0-9]*_hash_buffer)", line) is None:
+                if not re.match ("(run_selftests|selftest|_gcry_aes_c.._..c|_gcry_[a-z0-9]*_hash_buffer)", line) is None:
                     skip = True
                     fname = re.match ("[a-zA-Z0-9_]*", line).group ()
                     chmsg = "(%s): Removed." % fname