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
Providing the 's' flag in BOOST_FIND_LIB's boost_rtopt argument is ignored causing shared-object library files to still be preferred.
In order to fix this, I propose changing line 388 case $boost_ldpath:$boost_rtopt_ in #( to case $boost_ldpath:$boost_rtopt in #(
case $boost_ldpath:$boost_rtopt_ in #(
case $boost_ldpath:$boost_rtopt in #(
Note that boost_rtopt_ is a temporary loop variable which is out of scope in this context.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Providing the 's' flag in BOOST_FIND_LIB's boost_rtopt argument is ignored causing shared-object library files to still be preferred.
In order to fix this, I propose changing line 388
case $boost_ldpath:$boost_rtopt_ in #(
to
case $boost_ldpath:$boost_rtopt in #(
Note that boost_rtopt_ is a temporary loop variable which is out of scope in this context.
The text was updated successfully, but these errors were encountered: