Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
dgsga committed Mar 1, 2024
1 parent 2890133 commit 4aae1a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ jobs:
tar -zxpf bootstrap-trunk-x86_64-20230910.tar.gz -C /
/opt/local/bin/pkgin -y install \
avahi \
db5 \
gnome-tracker \
libevent \
libgcrypt \
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -382,9 +382,9 @@ if get_option('with-bdb') == ''
elif get_option('with-bdb') != ''
foreach dir : bdb_subdirs
if fs.exists(with_bdb / 'include' / dir / 'db.h')
bdb_header += with_bdb + '/include/' + dir + 'db.h'
bdb_header += with_bdb / 'include' / dir / 'db.h'
bdb_libdir += with_bdb / 'lib'
bdb_includes += include_directories(with_bdb + '/include/' + dir)
bdb_includes += include_directories(with_bdb / 'include' / dir)
endif
endforeach
else
Expand Down

0 comments on commit 4aae1a9

Please sign in to comment.