+2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * util/import_gcry.py: Accept space between # and include.
+
2011-10-23 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/lib/setjmp.S [__ia64__]: Include ./ia64/longjmp.S.
continue
else:
fw.write (holdline)
- m = re.match ("#include <.*>", line)
+ m = re.match ("# *include <(.*)>", line)
if not m is None:
- chmsg = "Removed including of %s" % \
- m.group () [len ("#include <"):len (m.group ()) - 1]
+ chmsg = "Removed including of %s" % m.groups ()[0]
if nch:
chlognew = "%s\n %s" % (chlognew, chmsg)
else: