From 9c6c3fe0d8ffdccbaefe8057fed89322a8bcb499 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 27 Feb 2024 18:44:37 -0500 Subject: [PATCH] Meta: Use correct helper process paths in the GN build These changed to libexec in ea59bfaae7d3a307e0ba371518e7f36a33ae407d. --- Meta/gn/secondary/Ladybird/BUILD.gn | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Meta/gn/secondary/Ladybird/BUILD.gn b/Meta/gn/secondary/Ladybird/BUILD.gn index ac7a725d4c..0685bb566e 100644 --- a/Meta/gn/secondary/Ladybird/BUILD.gn +++ b/Meta/gn/secondary/Ladybird/BUILD.gn @@ -328,15 +328,15 @@ if (current_os != "mac") { "WebWorker", ] sources = [ - "$root_out_dir/bin/ImageDecoder", "$root_out_dir/bin/Ladybird", - "$root_out_dir/bin/RequestServer", - "$root_out_dir/bin/SQLServer", - "$root_out_dir/bin/WebContent", - "$root_out_dir/bin/WebDriver", - "$root_out_dir/bin/WebSocket", - "$root_out_dir/bin/WebWorker", - "$root_out_dir/bin/headless-browser", + "$root_out_dir/libexec/ImageDecoder", + "$root_out_dir/libexec/RequestServer", + "$root_out_dir/libexec/SQLServer", + "$root_out_dir/libexec/WebContent", + "$root_out_dir/libexec/WebDriver", + "$root_out_dir/libexec/WebSocket", + "$root_out_dir/libexec/WebWorker", + "$root_out_dir/libexec/headless-browser", ] outputs = [ "{{bundle_executable_dir}}/{{source_file_part}}" ] }