Allow for several (comma-separated) PackageOptions

This commit is contained in:
Juergen Spitzmueller 2022-05-19 10:31:37 +02:00
parent 67e9add6d0
commit a77c84a0b4

View File

@ -691,7 +691,7 @@ TextClass::ReturnValues TextClass::read(Lexer & lexrc, ReadType rt)
case TC_PKGOPTS : {
lexrc.next();
string const pkg = lexrc.getString();
lexrc.next();
lexrc.eatLine();
string const options = lexrc.getString();
package_options_[pkg] = options;
break;