config(8): Allow escape-quoted empty strings

For use with things like BOOT_TAG=\"\" -- there are valid reasons to allow
empty strings, especially as these are usually being passed through as
options. The same argument could perhaps be made for the unquoted
variant in things like MODULES_OVERRIDE="", but it's not immediately clear
that this is an issue so I've left it untouched.

MFC after:	3 days
This commit is contained in:
kevans 2018-08-20 22:08:03 +00:00
parent d9db754f8a
commit 81fb5ce871

View File

@ -127,7 +127,7 @@ PATH [./][-/.%^A-Za-z_0-9]+
BEGIN ENVC;
return i;
}
\\\"[^"]+\\\" {
\\\"[^"]*\\\" {
BEGIN 0;
yytext[yyleng-2] = '"';
yytext[yyleng-1] = '\0';