1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

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!
This commit is contained in:
Andreas Kling 2019-11-18 16:44:36 +01:00
parent c628ebda0f
commit b0f38c1733

View file

@ -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"