Skip to content

Commit

Permalink
Remove -l flag from kmyacc invocation
Browse files Browse the repository at this point in the history
For PHP this doesn't do anything anyway.
  • Loading branch information
nikic committed Oct 19, 2019
1 parent 0a80b2d commit 54c37f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grammar/rebuildParsers.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
$additionalArgs = $optionDebug ? '-t -v' : '';

echo "Building $name parser.\n";
$output = trim(shell_exec("$kmyacc $additionalArgs -l -m $skeletonFile -p $name $tmpGrammarFile 2>&1"));
$output = trim(shell_exec("$kmyacc $additionalArgs -m $skeletonFile -p $name $tmpGrammarFile 2>&1"));
echo "Output: \"$output\"\n";

$resultCode = file_get_contents($tmpResultFile);
Expand Down

0 comments on commit 54c37f6

Please sign in to comment.