From d15aad1dfb675601f213cfc106efce5c6453af43 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Tue, 7 Nov 2023 17:45:38 +0100 Subject: [PATCH] don't install in /usr -- that doesn't work --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 12c5e3e1b..2ce007e15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,9 @@ concurrency: env: CFLAGS: -g -O2 -Werror=pointer-arith -Werror=implicit-function-declaration + BASE_INSTALL_PATH: ${{GITHUB_WORKSPACE}}/_install + PKG_CONFIG_PATH: $BASE_INSTALL_PATH/lib/pkgconfig + PATH: $BASE_INSTALL_PATH/bin:$PATH JOBS: 2 jobs: @@ -88,7 +91,7 @@ jobs: run: | cd mate-desktop NOCONFIGURE=1 ./autogen.sh - { ./configure --prefix=/usr || { cat config.log; exit 1; } ; } + { ./configure --prefix="$BASE_INSTALL_PATH" || { cat config.log; exit 1; } ; } - name: Build mate-desktop run: make -C mate-desktop -j ${{ env.JOBS }}