-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
media-plugins/calf: work around buggy configure check #9701
Conversation
It's worth pointing out that 0.0.60 does not have this behavior (nor this option), which is why I didn't touch that ebuild. |
Any update on this? |
The upstream project's configure.ac hard-codes a check to see if calf is already installed to /usr/lib or /usr/local/lib, and if so, refuses to configure (causing econf to fail) if `calf` is already installed on the system. Simply adding --without-obsolete-check to the configure invocation disables this (pointless) check. Closes: https://bugs.gentoo.org/669016 Signed-off-by: Niklas Haas <git@haasn.xyz>
I've created an upstream bug and linked it in the commit. |
Copyright policy changePlease note that on 2018-09-15 Trustees have approved new Gentoo copyright policy. All contributions made to Gentoo need to follow this policy. If you include the Signed-off-by line in your commit message, you indicate that you have read the policy and agree to its terms. For more detailed explanation, please see the new Gentoo copyright policy explained article. Pull Request assignmentAreas affected: ebuilds media-plugins/calf: At least one of the listed packages is maintained entirely by non-GitHub developers! Linked bugsBugs linked: 669016 In order to force reassignment and/or bug reference scan, please append Docs: Code of Conduct ● Copyright policy (expl.) ● Devmanual ● GitHub PRs ● Proxy-maint guide |
Pull request CI reportReport generated at: 2018-10-19 13:36 UTC No issues found |
thank you for investigating the issue and providing the patch! :-) i'm not maintainer of calf but i took the chance to fix it as it did not attract enough attention since you created the pr :-)
|
The upstream project's configure.ac hard-codes a check to see if calf is already installed to /usr/lib or /usr/local/lib, and if so, refuses to configure (causing econf to fail) if `calf` is already installed on the system. Simply adding --without-obsolete-check to the configure invocation disables this (pointless) check. Closes: https://bugs.gentoo.org/661036 Closes: #9701 Signed-off-by: Niklas Haas <git@haasn.xyz> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
The upstream project's configure.ac hard-codes a check to see if calf is
already installed to /usr/lib or /usr/local/lib, and if so, refuses to
configure (causing econf to fail) if
calf
is already installed on thesystem.
Simply adding --without-obsolete-check to the configure invocation
disables this (pointless) check.