From 533e29b3611eddae6c3158a7bc3e571eaae658e4 Mon Sep 17 00:00:00 2001 From: "Bagg Tobias (ETAS-DAP/XPC-Fe3)" Date: Mon, 1 Jul 2024 11:27:44 +0000 Subject: [PATCH] tox: use devel branch again Fixes: https://github.com/sysrepo/sysrepo-python/issues/69 Signed-off-by: Bagg Tobias (ETAS-DAP/XPC-Fe3) --- tox-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox-install.sh b/tox-install.sh index e363a82..3df3659 100755 --- a/tox-install.sh +++ b/tox-install.sh @@ -33,7 +33,7 @@ download() fi } -ly_branch="${LIBYANG_BRANCH:-master}" +ly_branch="${LIBYANG_BRANCH:-devel}" 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:-master}" +sr_branch="${SYSREPO_BRANCH:-devel}" sr_src="${SYSREPO_SRC:-$toxdir/.sr.$sr_branch.src}" sr_prefix="$toxdir/.sr.$sr_branch" sr_build="$toxdir/.sr.$sr_branch.build"