2020-12-28.install-in-usr-lib-nagios.patch 518 B

12345678910111213141516171819
  1. Subject: Install binary in /usr/lib/nagios/plugins/
  2. Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  3. Date: 2020-12-28
  4. Forwarded: not-needed
  5. This aligns the installation path with the various
  6. monitoring-plugins-* packages.
  7. --- a/meson.build
  8. +++ b/meson.build
  9. @@ -70,7 +70,7 @@
  10. endif
  11. executable('check_tang', 'tang.c',
  12. - install_dir: join_paths(get_option('libdir'), 'nagios', 'plugins'),
  13. + install_dir: join_paths('lib', 'nagios', 'plugins'),
  14. dependencies: [http, jose],
  15. install: true,
  16. )