We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With recent texinfo texi files in gcc/doc will break build by "@itemx must be preceeded by @item" messages .
Doing a simple sed replace @itemx->@item on gcc/doc/*.texi files allows the build to continue.
reference : http://review.coreboot.org/gitweb?p=coreboot.git;a=commitdiff;h=69a21b1eb9de9ab931959ac6efaa69333ffd2807
The text was updated successfully, but these errors were encountered:
Also, gdb fails to build as well, but the fix is insufficient.
Sorry, something went wrong.
i fixed it by overwriting the MAKEINFO var.
just add this after the configure (in the scripts):
echo "MAKEINFO = :" >> Makefile
No branches or pull requests
With recent texinfo texi files in gcc/doc will break build by "@itemx must be preceeded by @item" messages .
Doing a simple sed replace @itemx->@item on gcc/doc/*.texi files allows the build to continue.
reference : http://review.coreboot.org/gitweb?p=coreboot.git;a=commitdiff;h=69a21b1eb9de9ab931959ac6efaa69333ffd2807
The text was updated successfully, but these errors were encountered: