summaryrefslogtreecommitdiff
path: root/tools/meson.build
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2017-09-11 19:26:15 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2017-09-15 15:57:51 +0300
commit2d25aa8fcbc5bbbf5b658515e9fb41647382c5b3 (patch)
tree42ea0027a8cc26367f28c5cd38a1f62668e45c94 /tools/meson.build
parenta537356e83c20bf57b08362edc921a1cc31f00f8 (diff)
meson: Drop the 'lib' prefix from intel_aubdump.so
Autotools didn't add the 'lib' prefix to the intel_aubdump.so filename. Coerce meson to match that. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Diffstat (limited to 'tools/meson.build')
-rw-r--r--tools/meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/meson.build b/tools/meson.build
index 530e5f95..4367dd2d 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -80,6 +80,9 @@ install_subdir('registers', install_dir : pkgdatadir,
'Makefile', 'Makefile.in', 'Makefile.am',
])
-shared_library('intel_aubdump', 'aubdump.c', dependencies : [ igt_deps, dlsym ])
+shared_library('intel_aubdump', 'aubdump.c',
+ dependencies : [ igt_deps, dlsym ],
+ name_prefix : '',
+ install : true)
subdir('null_state_gen')