1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-30 00:13:43 +02:00

meson: use built-in options for install paths

The install functions of meson can take a relative path and join the
prefix automatically.

Change-Id: I9cb9faf4bdbcfd66098478cc3a260eb3b664a2e6
Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/64028
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
This commit is contained in:
Thomas Heijligen 2022-05-03 11:50:16 +02:00 committed by Thomas Heijligen
parent 400a6a8b2c
commit 688eb58204

View File

@ -403,11 +403,6 @@ if need_serial
endif endif
endif endif
prefix = get_option('prefix')
sbindir = join_paths(prefix, get_option('sbindir'))
libdir = join_paths(prefix, get_option('libdir'))
mandir = join_paths(prefix, get_option('mandir'))
install_headers([ install_headers([
'include/libflashrom.h', 'include/libflashrom.h',
], ],
@ -461,7 +456,7 @@ configure_file(
output : 'flashrom.8', output : 'flashrom.8',
configuration : conf, configuration : conf,
install: true, install: true,
install_dir: join_paths(mandir, 'man8'), install_dir: join_paths(get_option('mandir'), 'man8'),
) )
flashrom_dep = declare_dependency( flashrom_dep = declare_dependency(
@ -501,7 +496,7 @@ executable(
cargs cargs
], ],
install : true, install : true,
install_dir : sbindir, install_dir : get_option('sbindir')
) )
subdir('util') subdir('util')