From c3b14ade55aa3fd24012bcd009005f64af352b5a Mon Sep 17 00:00:00 2001 From: Christian Gmeiner Date: Tue, 11 May 2021 08:05:04 +0200 Subject: [PATCH] freedreno/isa: simplify custom_target Signed-off-by: Christian Gmeiner Reviewed-by: Rob Clark Part-of: --- src/freedreno/isa/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/freedreno/isa/meson.build b/src/freedreno/isa/meson.build index 4e08541ffca..878d5b5cc32 100644 --- a/src/freedreno/isa/meson.build +++ b/src/freedreno/isa/meson.build @@ -36,7 +36,7 @@ ir3_isa_c = custom_target( input: ['decode.py', 'ir3.xml'], output: 'ir3-isa.c', command: [ - prog_python, '@INPUT0@', '@INPUT1@', '@OUTPUT@' + prog_python, '@INPUT@', '@OUTPUT@' ], depend_files: isa_depend_files, ) @@ -78,7 +78,7 @@ encode_h = custom_target( input: ['encode.py', 'ir3.xml'], output: 'encode.h', command: [ - prog_python, '@INPUT0@', '@INPUT1@', '@OUTPUT@' + prog_python, '@INPUT@', '@OUTPUT@' ], depend_files: isa_depend_files, )