Trivial: allow "," in filenames
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4213 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
b61bc7c68a
commit
79cba771fc
|
@ -1690,7 +1690,7 @@ parser Config:
|
|||
# Dir's on the other hand are abitrary
|
||||
# this may all be stupid.
|
||||
token RULE: r'[-a-zA-Z0-9_$()./]+[-a-zA-Z0-9_ $()./]+[-a-zA-Z0-9_$()./]+'
|
||||
token DIRPATH: r'[-a-zA-Z0-9_$()./]+'
|
||||
token DIRPATH: r'[-a-zA-Z0-9_$()./,]+'
|
||||
token ID: r'[a-zA-Z_.]+[a-zA-Z0-9_.]*'
|
||||
token DELEXPR: r'{([^}]+|\\.)*}'
|
||||
token STR: r'"([^\\"]+|\\.)*"'
|
||||
|
|
Loading…
Reference in New Issue