Skip to content

Commit

Permalink
Fix subunit library discovery in FindCheck module
Browse files Browse the repository at this point in the history
  • Loading branch information
roehling committed Apr 14, 2024
1 parent 59617a4 commit d61379d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -y check cmake libconfuse-dev libhiredis-dev libsqlite3-dev libsubunit-dev redis
sudo apt-get install -y check cmake libconfuse-dev libhiredis-dev libsqlite3-dev redis
- name: Build PostSRSd
run: |
mkdir _build
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindCheck.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ else()
NAMES check_pic check
HINTS ${PC_CHECK_LIBRARY_DIRS}
)
find_path(Check_subunit_LIBRARY subunit HINTS ${PC_SUBUNIT_LIBRARY_DIRS})
find_library(Check_subunit_LIBRARY subunit HINTS ${PC_SUBUNIT_LIBRARY_DIRS})
find_library(Check_m_LIBRARY m)
find_library(Check_rt_LIBRARY rt)
find_package(Threads REQUIRED)
Expand Down

0 comments on commit d61379d

Please sign in to comment.