From 5b615e33a05fbff076402b9b88671163525d2de2 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Wed, 18 Sep 2019 00:01:22 +0000 Subject: [PATCH] build: Don't hardcode /bin/echo So that the shell builtin is used instead when available. --- libfprint/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libfprint/meson.build b/libfprint/meson.build index 976c70c8..ce19e95e 100644 --- a/libfprint/meson.build +++ b/libfprint/meson.build @@ -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 ])