Skip to content
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

DPDK: install path fixes for meson and Ubuntu 24.04 #3598

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use helper function instead of instantiating the class directly
  • Loading branch information
mcgov committed Feb 5, 2025
commit 452df1c4304564a408356da417c3b17308b3fe27
4 changes: 2 additions & 2 deletions lisa/tools/meson.py
Original file line number Diff line number Diff line change
@@ -8,14 +8,14 @@

from lisa.executable import Tool
from lisa.operating_system import Posix

from lisa.util import parse_version
from .ln import Ln
from .python import Pip
from .whoami import Whoami


class Meson(Tool):
_minimum_version = VersionInfo(major=0, minor=52, patch=0)
_minimum_version = parse_version("0.52.0")

@property
def command(self) -> str: