-
Notifications
You must be signed in to change notification settings - Fork 662
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
2.1: build fails #1628
Comments
This looks like you haven't updated libnvme: |
Here is the fix: --- a/meson.build
+++ b/meson.build
@@ -44,7 +44,7 @@
conf.set('SYSCONFDIR', '"@0@"'.format(sysconfdir))
# Check for libnvme availability
-libnvme_dep = dependency('libnvme', required: true,
+libnvme_dep = dependency('libnvme', version: '>= 1.1', required: true,
fallback : ['libnvme', 'libnvme_dep'])
# Check for libuuid availability I think that it would be good to make new 2.1.1 release to avoid more reports like that. |
Yep, but that's not the only thing which is missing. we need also to define a weak |
OK thank you 👍 |
Yeah, just fixing the release script to be able to produce a v2.1.1... brown bag release... |
And while at it we might need another release to fixup my brown bag release... Though the main reason for a v2.1.2 is the fix ce26eb9 |
Looks like something is wrong ..
The text was updated successfully, but these errors were encountered: