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
When yacc (or lex) cannot be found, configure outputs:
configure
./configure: cannot find yacc. Will try to use pre-provided source.
Despite this message, it aborts at that line, probably due to a misplaced exit 1 in the configure script.
exit 1
I ran sed 's/exit 1 ;//' -i configure and now the script behaves as expected.
sed 's/exit 1 ;//' -i configure
The text was updated successfully, but these errors were encountered:
Resolved by 5311413
Sorry, something went wrong.
No branches or pull requests
When yacc (or lex) cannot be found,
configure
outputs:Despite this message, it aborts at that line, probably due to a misplaced
exit 1
in the configure script.I ran
sed 's/exit 1 ;//' -i configure
and now the script behaves as expected.The text was updated successfully, but these errors were encountered: