diff options
-rw-r--r-- | src/gallium/targets/opencl/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/opencl/meson.build b/src/gallium/targets/opencl/meson.build index bebe0547d45..317ad8dab4a 100644 --- a/src/gallium/targets/opencl/meson.build +++ b/src/gallium/targets/opencl/meson.build @@ -20,7 +20,7 @@ opencl_link_args = [] opencl_link_deps = [] -opencl_version = '1.0' +opencl_version = '1' if with_ld_version_script opencl_link_args += [ @@ -55,7 +55,7 @@ libopencl = shared_library( cpp.find_library('clangLex', dirs : llvm_libdir), cpp.find_library('clangBasic', dirs : llvm_libdir), ], - version : opencl_version, + version : '@[email protected]'.format(opencl_version), install : true, ) |