From 8c8072aa4a084aace4ee16614fad9c626c8f8a44 Mon Sep 17 00:00:00 2001 From: Patrick Venture Date: Thu, 28 Mar 2019 10:50:21 -0700 Subject: build: install into bin instead of sbin Installs into bin instead of sbin per guidelines. Signed-off-by: Patrick Venture Change-Id: I9d2a01a37179f19ce272f13641217f9bdc4a1315 --- Makefile.am | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 26c1980..9316cc5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -sbin_PROGRAMS = phosphor-watchdog +bin_PROGRAMS = phosphor-watchdog noinst_HEADERS = watchdog.hpp diff --git a/meson.build b/meson.build index 75d19e6..456f179 100644 --- a/meson.build +++ b/meson.build @@ -36,7 +36,7 @@ executable( sdeventplus, ], install: true, - install_dir: get_option('sbindir')) + install_dir: get_option('bindir')) if not build_tests.disabled() subdir('test') -- cgit v1.2.1