From: Yu Watanabe Date: Thu, 10 Nov 2022 16:17:57 +0000 (+0900) Subject: meson: install systemd-ac-power under /usr/bin X-Git-Tag: v253-rc1~555 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=251dc2f14ba423f7c27dcafb6eb2c06bc94c840d;p=thirdparty%2Fsystemd.git meson: install systemd-ac-power under /usr/bin And test the its help message. The program is useful for e.g. scripts that conditionalize their tasks to be invoked only when running on AC power. --- diff --git a/meson.build b/meson.build index 00daeac1b6c..2d41ff8799d 100644 --- a/meson.build +++ b/meson.build @@ -3444,15 +3444,14 @@ public_programs += executable( install : true, install_dir : rootlibexecdir) -executable( +public_programs += executable( 'systemd-ac-power', 'src/ac-power/ac-power.c', include_directories : includes, link_with : [libshared], dependencies : [versiondep], install_rpath : rootpkglibdir, - install : true, - install_dir : rootlibexecdir) + install : true) public_programs += executable( 'systemd-detect-virt',