-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Only use relative paths for install DESTINATION option #1405
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
Conversation
I had a look through some of the failed builds, and they seem unrelated to these changes, but I'm not an expert on libevent. |
macos failure looks related:
|
That's down on line 2,039, but there are dozens of errors unrelated to how files are installed before it, such as this starting on line 267.
But the first error, which I'm not sure if it's truly an error or just a warning is on line 24.
Can we selectively re-run only the builds that failed? |
63a602e
to
641758c
Compare
GitHub does not allow this without write access to the repo
Yes, it is hard to debug this test.
Likely this does not leads to the test failures, since this test has some negative cases, which I believe can have such logs. |
OK, thanks @azat, I'll investigate. |
I've recently merged #1397, but there is still a problem, can you please continue on this one? |
But it removes some oddity from the test, maybe the test will be fixed by itself, let's check. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, hope that the export test will pass.
As described in #1404, the explicit use of
CMAKE_INSTALL_PREFIX
conflicts with using command-line--prefix
.This simply removes all explicit use of
CMAKE_INSTALL_PREFIX
.Fixes: #1404