summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorSimon Steinbeiß <simon.steinbeiss@tttech.com>2020-05-11 11:56:40 +0200
committerSimon Steinbeiß <simon.steinbeiss@tttech.com>2020-05-11 11:57:35 +0200
commitbe9eaae5c3a551fd2387584386e965eb59496a50 (patch)
treec4e63a2828bd145c166844ddf1f43ddea903ff1d /ci
parent01cab4d1e78435b19586844e93d99ea4d7c2a675 (diff)
downloadxfce4-dev-tools-be9eaae5c3a551fd2387584386e965eb59496a50.tar.gz
xfce-build: Order libs according to dependency chain
See also: https://docs.xfce.org/xfce/building#xfce_dependencies_explained
Diffstat (limited to 'ci')
-rw-r--r--ci/build_libs.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/ci/build_libs.sh b/ci/build_libs.sh
index c3d7634..94d8cca 100644
--- a/ci/build_libs.sh
+++ b/ci/build_libs.sh
@@ -7,12 +7,13 @@ AUTOGEN_OPTIONS="--disable-debug --enable-maintainer-mode --host=x86_64-linux-gn
--libexecdir=/usr/lib/x86_64-linux-gnu --sysconfdir=/etc --localstatedir=/var --enable-gtk-doc"
# (BUILD_TYPE BRANCH URL NAME) tuples:
-REPOS=( "${XFCE_BASE}/xfce/libxfce4ui.git libxfce4ui")
+REPOS= ("${XFCE_BASE}/xfce/xfce4-dev-tools.git xfce4-dev-tools")
REPOS+=("${XFCE_BASE}/xfce/libxfce4util.git libxfce4util")
+REPOS+=("${XFCE_BASE}/xfce/xfconf.git xfconf")
+REPOS+=("${XFCE_BASE}/xfce/libxfce4ui.git libxfce4ui")
REPOS+=("${XFCE_BASE}/xfce/exo.git exo")
-REPOS+=("${XFCE_BASE}/xfce/xfce4-dev-tools.git xfce4-dev-tools")
-REPOS+=("${XFCE_BASE}/xfce/xfce4-panel.git xfce4-panel")
REPOS+=("${XFCE_BASE}/xfce/garcon.git garcon")
+REPOS+=("${XFCE_BASE}/xfce/xfce4-panel.git xfce4-panel")
for tuple in "${REPOS[@]}"; do
set -- $tuple