From e973f2c9674ae5e864dd0ed710aa875efd425dc7 Mon Sep 17 00:00:00 2001 From: tbsuht <126770680+tbsuht@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:56:34 +0100 Subject: [PATCH] Update tox-install.sh use master instead of devel as libyang 3.x preparation is ongoing --- tox-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox-install.sh b/tox-install.sh index 3df3659..e363a82 100755 --- a/tox-install.sh +++ b/tox-install.sh @@ -33,7 +33,7 @@ download() fi } -ly_branch="${LIBYANG_BRANCH:-devel}" +ly_branch="${LIBYANG_BRANCH:-master}" ly_src="${LIBYANG_SRC:-$toxdir/.ly.$ly_branch.src}" ly_prefix="$toxdir/.ly.$ly_branch" ly_build="$toxdir/.ly.$ly_branch.build" @@ -61,7 +61,7 @@ export LIBYANG_HEADERS="$ly_prefix/include" export LIBYANG_LIBRARIES="$ly_prefix/lib" export LIBYANG_EXTRA_LDFLAGS="-Wl,--enable-new-dtags,-rpath=$LIBYANG_LIBRARIES" -sr_branch="${SYSREPO_BRANCH:-devel}" +sr_branch="${SYSREPO_BRANCH:-master}" sr_src="${SYSREPO_SRC:-$toxdir/.sr.$sr_branch.src}" sr_prefix="$toxdir/.sr.$sr_branch" sr_build="$toxdir/.sr.$sr_branch.build"