From b0f38c17337aed97508ed66d17af23d5b7acb69a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 18 Nov 2019 16:44:36 +0100 Subject: [PATCH] Build: Oops, typo in the path to LibHTML code generators in makeall.sh This worked locally because I already had the built generators lying around, but failed for other people who hadn't built them yet. Oops! --- Kernel/makeall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index 5de94b885d..13bef7fee7 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -18,8 +18,8 @@ build_targets="" # Build the host-side tools first, since they are needed to build some programs. build_targets="$build_targets ../DevTools/IPCCompiler" build_targets="$build_targets ../DevTools/FormCompiler" -build_targets="$build_targets ../LibHTML/CodeGenerators/CodeGenerators/Generate_CSS_PropertyID_cpp" -build_targets="$build_targets ../LibHTML/CodeGenerators/CodeGenerators/Generate_CSS_PropertyID_h" +build_targets="$build_targets ../Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_cpp" +build_targets="$build_targets ../Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_h" # Build LibC, LibCore, LibIPC and LibThread before IPC servers, since they depend on them. build_targets="$build_targets ../Libraries/LibC"