Skip to content

Commit 8082e4b

Browse files
committed
fix: set the install path to libexec
1 parent 3f0aaa7 commit 8082e4b

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.1] - 2026-05-07
9+
- Changed the target installed path to libexec
10+
11+
[0.1.0] https://github.com/waycrate/polkit-waycrate/compare/v0.1.1...v0.1.0
12+
813
## [0.1.0] - 2026-05-07
914
- Init project and first release
1015

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkit-waycrate-authentication-agent-1"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2024"
55
license = "GPL-3.0-or-later"
66
description = "polkit-agent binding for zbus"

meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'polkit-waycrate',
33
'rust',
4-
version: '0.1.0',
4+
version: '0.1.1',
55
meson_version: '>=1.1.0',
66
)
77

@@ -31,13 +31,13 @@ endif
3131

3232
prefix = get_option('prefix')
3333

34-
bindir = prefix / get_option('bindir')
34+
lib_dir = prefix / get_option('libexecdir')
3535

3636
systemd_dir = prefix / get_option('libdir') / 'systemd' / 'user'
3737

3838
global_conf = configuration_data()
3939

40-
global_conf.set('bin_install_dir', bindir)
40+
global_conf.set('bin_install_dir', lib_dir)
4141

4242
systemd_service_file = configure_file(
4343
input: './misc/polkit-waycrate-agent.service.in',
@@ -50,7 +50,7 @@ custom_target(
5050
output: target_name,
5151
build_by_default: true,
5252
install: true,
53-
install_dir: bindir,
53+
install_dir: lib_dir,
5454
console: true,
5555
command: command,
5656
)

0 commit comments

Comments
 (0)