You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
575 B

  1. --- a/meson.build
  2. +++ b/meson.build
  3. @@ -34,7 +34,6 @@ add_project_arguments('-Os', '-Wall', '-
  4. language : 'c')
  5. glib = dependency('glib-2.0')
  6. -libdl = cc.find_library('dl')
  7. executable('conmon',
  8. ['src/conmon.c',
  9. @@ -71,7 +70,7 @@ executable('conmon',
  10. 'src/utils.h',
  11. 'src/seccomp_notify.c',
  12. 'src/seccomp_notify.h'],
  13. - dependencies : [glib, libdl],
  14. + dependencies : [glib],
  15. install : true,
  16. install_dir : join_paths(get_option('libexecdir'), 'podman'),
  17. )