mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
meson: remove extraneous default install_dir arguments
This commit is contained in:
@ -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,
|
||||
|
||||
@ -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'),
|
||||
)
|
||||
|
||||
@ -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,
|
||||
)
|
||||
|
||||
|
||||
@ -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,
|
||||
)
|
||||
|
||||
@ -84,6 +84,5 @@ sysprof_deps = [
|
||||
|
||||
sysprof = executable('sysprof', sysprof_resources + sysprof_sources,
|
||||
dependencies: sysprof_deps,
|
||||
install_dir: get_option('bindir'),
|
||||
install: true,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user