Skip to content

Commit 8b2582d

Browse files
slycordinatornilfm99
authored andcommitted
Update meson.build
Change xxd calls to use '-i' instead of '--include', since the latter is less supported/portable
1 parent 4db7c0c commit 8b2582d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libvmaf/src/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ if built_in_models_enabled
151151
output : model_file,
152152
copy: true
153153
),
154-
command : [xxd, '--include', '@INPUT@', '@OUTPUT@'],
154+
command : [xxd, '-i', '@INPUT@', '@OUTPUT@'],
155155
)
156156
endforeach
157157

@@ -340,7 +340,7 @@ if is_cuda_enabled
340340
build_by_default: true,
341341
output : ['@PLAINNAME@.c'],
342342
input : _ptx,
343-
command : [xxd_exe, '--include','@INPUT@', '@OUTPUT@'],
343+
command : [xxd_exe, '-i','@INPUT@', '@OUTPUT@'],
344344
)
345345
ptx_arrays += t
346346
endforeach

0 commit comments

Comments
 (0)