Skip to content
Snippets Groups Projects
Commit eb611ef9 authored by Simon Ser's avatar Simon Ser
Browse files

build: fix "Unknown statement" for real

"+" doesn't fix the error. Use a single line.
parent 58ca5f4f
No related branches found
No related tags found
No related merge requests found
Pipeline #754715 passed
......@@ -61,8 +61,7 @@ if libdrm.version().version_compare('<2.4.114')
elif libdrm.type_name() == 'internal'
fourcc_h = meson.current_source_dir() / 'subprojects/libdrm/include/drm/drm_fourcc.h'
else
fourcc_h = libdrm.get_pkgconfig_variable('pc_sysrootdir') +
libdrm.get_pkgconfig_variable('includedir') / 'libdrm/drm_fourcc.h'
fourcc_h = libdrm.get_pkgconfig_variable('pc_sysrootdir') + libdrm.get_pkgconfig_variable('includedir') / 'libdrm/drm_fourcc.h'
endif
if libpci.found()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment