Skip to content

Commit

Permalink
Don't use shared libraries on Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Oct 12, 2023
1 parent 30ecef9 commit 8cbecb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8cbecb5

Please sign in to comment.