From: Dylan Baker Date: Tue, 19 May 2020 21:18:39 +0000 (-0700) Subject: drm-shim/meson: The name of the target is a string not a list X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=23df13c98825dd5b99a7e60fc8318ff9287a053d;p=mesa.git drm-shim/meson: The name of the target is a string not a list This happens to work, but it's not guaranteed to Acked-by: Matt Turner Reviewed-by: Eric Engestrom Part-of: --- diff --git a/src/drm-shim/meson.build b/src/drm-shim/meson.build index 197c8253995..39d739610ab 100644 --- a/src/drm-shim/meson.build +++ b/src/drm-shim/meson.build @@ -1,4 +1,5 @@ # Copyright © 2019 Broadcom +# Copyright © 2020 Intel Corporation # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -19,7 +20,7 @@ # SOFTWARE. drm_shim = static_library( - ['drm_shim'], + 'drm_shim', [ 'device.c', 'drm_shim.c',