Rebase to upstream commit (d913f60d84) Resolves: RHEL-84040 Signed-off-by: Tao Liu <ltao@redhat.com>
33 lines
859 B
Diff
33 lines
859 B
Diff
From 499688321313a11d32a4e0386833472da026d68a Mon Sep 17 00:00:00 2001
|
|
From: Thomas Renninger <trenn@suse.de>
|
|
Date: Thu, 3 Apr 2025 17:51:23 +0200
|
|
Subject: [PATCH 1/4] Unify meson and autoconf: Install executables to sbin
|
|
|
|
---
|
|
meson.build | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index d26ef42..0441b30 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -35,6 +35,7 @@ if cdata.get('HAVE_IRQBALANCEUI')
|
|
'ui/ui.c',
|
|
dependencies: [glib_dep, ncurses_dep],
|
|
install: true,
|
|
+ install_dir : get_option('sbindir'),
|
|
)
|
|
|
|
install_man('irqbalance-ui.1')
|
|
@@ -63,6 +64,7 @@ executable(
|
|
irqbalance_sources,
|
|
dependencies: [glib_dep, m_dep, capng_dep, libnl_3_dep, libnl_genl_3_dep, numa_dep, systemd_dep],
|
|
install: true,
|
|
+ install_dir : get_option('sbindir'),
|
|
)
|
|
|
|
install_man('irqbalance.1')
|
|
--
|
|
2.47.0
|
|
|