From 8cbecb5759db9474329c06105269ddcd3a0f9217 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 11 Oct 2023 21:17:36 -0400 Subject: [PATCH] Don't use shared libraries on Linux. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c159c10..690cc8d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,9 +58,9 @@ jobs: repository: OpenPrinting/libcups path: libcups - name: Configure libcups3 - run: cd libcups; ./configure --enable-debug + run: cd libcups; ./configure --enable-debug --disable-shared - name: Build/install libcups3 - run: cd libcups; make && sudo make install && sudo ldconfig + run: cd libcups; make && sudo make install - name: Configure PAPPL run: ./configure --enable-debug --enable-maintainer --with-sanitizer=address - name: Build PAPPL