diff options
author | nucleo <alekcejk@googlemail.com> | 2023-08-15 20:59:35 +0300 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2023-08-17 01:23:31 +0000 |
commit | cc22d38100ee7d2c03289457095baa85583c762a (patch) | |
tree | fc7649b758dfadf1bc3458585526f115761a690f /build/external | |
parent | 7b8b4652693a87233c9aea313959a9cede3df0f4 (diff) |
dpdk: Newer meson 0.55.3
Fixes error with python 3.12
No module named 'pkg_resources'
'import pkg_resources' removed in 0.55.3
Type: fix
Change-Id: I15c8cf195fd07a0eb2f3b58f895ef4b26cc17b90
Signed-off-by: nucleo <alekcejk@googlemail.com>
Diffstat (limited to 'build/external')
-rw-r--r-- | build/external/packages/dpdk.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/external/packages/dpdk.mk b/build/external/packages/dpdk.mk index 42ad74c3ec4..f15c9f79a37 100644 --- a/build/external/packages/dpdk.mk +++ b/build/external/packages/dpdk.mk @@ -182,8 +182,8 @@ define dpdk_config_cmds mkdir -p ../dpdk-meson-venv && \ python3 -m venv ../dpdk-meson-venv && \ source ../dpdk-meson-venv/bin/activate && \ - (if ! ls $(PIP_DOWNLOAD_DIR)meson* ; then pip3 download -d $(PIP_DOWNLOAD_DIR) -f $(DL_CACHE_DIR) meson==0.55 setuptools wheel pyelftools; fi) && \ - pip3 install --no-index --find-links=$(PIP_DOWNLOAD_DIR) meson==0.55 pyelftools && \ + (if ! ls $(PIP_DOWNLOAD_DIR)meson* ; then pip3 download -d $(PIP_DOWNLOAD_DIR) -f $(DL_CACHE_DIR) meson==0.55.3 setuptools wheel pyelftools; fi) && \ + pip3 install --no-index --find-links=$(PIP_DOWNLOAD_DIR) meson==0.55.3 pyelftools && \ PKG_CONFIG_PATH=$(dpdk_install_dir)/lib/pkgconfig meson setup $(dpdk_src_dir) \ $(dpdk_build_dir) \ $(DPDK_MESON_ARGS) \ |