meson: remove extraneous default install_dir arguments

This commit is contained in:
Tristan Partin
2023-07-28 14:02:33 -05:00
parent b10d056635
commit 50cfd82286
5 changed files with 0 additions and 7 deletions

View File

@ -55,7 +55,6 @@ libsysprof_capture = static_library(
dependencies: libsysprof_capture_deps,
c_args: [ '-DSYSPROF_CAPTURE_COMPILATION' ],
install_dir: get_option('libdir'),
install: install_static,
gnu_symbol_visibility: 'hidden',
pic: true,

View File

@ -15,19 +15,16 @@ libsysprof_memory_preload = shared_library('sysprof-memory-@0@'.format(libsyspro
['sysprof-memory-collector.c'],
dependencies: preload_deps,
install: true,
install_dir: get_option('libdir'),
)
libsysprof_speedtrack_preload = shared_library('sysprof-speedtrack-@0@'.format(libsysprof_api_version),
['sysprof-speedtrack-collector.c'],
dependencies: preload_deps,
install: true,
install_dir: get_option('libdir'),
)
libsysprof_tracer_preload = shared_library('sysprof-tracer-@0@'.format(libsysprof_api_version),
['sysprof-tracer-collector.c'],
dependencies: preload_deps,
install: true,
install_dir: get_option('libdir'),
)

View File

@ -19,7 +19,6 @@ sysprof_agent_deps = [
sysprof_agent = executable('sysprof-agent', sysprof_agent_sources,
dependencies: sysprof_agent_deps,
c_args: release_flags + sysprof_agent_c_args,
install_dir: get_option('bindir'),
install: true,
)

View File

@ -14,6 +14,5 @@ sysprof_cli_deps = [
sysprof_cli = executable('sysprof-cli', sysprof_cli_sources,
dependencies: sysprof_cli_deps,
c_args: release_flags + sysprof_cli_c_args,
install_dir: get_option('bindir'),
install: true,
)

View File

@ -84,6 +84,5 @@ sysprof_deps = [
sysprof = executable('sysprof', sysprof_resources + sysprof_sources,
dependencies: sysprof_deps,
install_dir: get_option('bindir'),
install: true,
)