build: Don't hardcode /bin/echo

So that the shell builtin is used instead when available.
This commit is contained in:
worldofpeace 2019-09-18 00:01:22 +00:00 committed by Bastien Nocera
parent 823f2c1067
commit 5b615e33a0

View file

@ -142,7 +142,7 @@ libfprint_sources += configure_file(input: 'empty_file',
output: 'drivers_definitions.h',
capture: true,
command: [
'/bin/echo',
'echo',
drivers_struct_list
])
@ -150,7 +150,7 @@ libfprint_sources += configure_file(input: 'empty_file',
output: 'drivers_arrays.h',
capture: true,
command: [
'/bin/echo',
'echo',
drivers_primitive_array + '\n\n' + drivers_img_array
])