build: Don't hardcode /bin/echo
So that the shell builtin is used instead when available.
This commit is contained in:
parent
823f2c1067
commit
5b615e33a0
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
])
|
||||
|
||||
|
|
Loading…
Reference in a new issue