OBS: add workaround for limesuite 23.10 release

The previous workaround for building on debian 12 is not needed anymore,
as the related patch has been merged. Replace it with a new workaround
needed for building the limesuite 23.10 release.

Change-Id: I569642ebb13ac3eb3e241642e299be0a0a2ab15d
This commit is contained in:
Oliver Smith 2023-10-31 12:03:07 +01:00
parent b365c1df68
commit 867f2d28fd
1 changed files with 6 additions and 4 deletions

View File

@ -124,10 +124,12 @@ def prepare_project_open5gs():
def prepare_project_limesuite():
""" Fix Debian 12 compat, until this is merged and in the next release:
https://github.com/myriadrf/LimeSuite/pull/381 """
lib.run_cmd(["sed", "s/libwxgtk3.0-gtk3-dev,$/libwxgtk3.0-gtk3-dev | libwxgtk3.2-dev,/g",
"-i", "debian/control"], cwd=lib.git.get_repo_path("limesuite"))
""" Fix bug in 23.10: https://github.com/myriadrf/LimeSuite/pull/386 """
lib.run_cmd(["mv", "-v",
"liblimesuite22.09-1.install",
"liblimesuite23.10-1.install"],
cwd=f"{lib.git.get_repo_path('limesuite')}/debian",
check=False)
def run_generate_build_dep(project):