Skip to content

Commit

Permalink
don't install in /usr -- that doesn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
cwendling committed Nov 7, 2023
1 parent dcd6c12 commit d15aad1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit d15aad1

Please sign in to comment.