diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-08 07:10:47 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-08 07:14:18 +0200 |
commit | 105a97685eb318f04a2e5458c9990649b4257653 (patch) | |
tree | ec124d0d6e7d67fc461be69825dd244e7ee1d432 /Libraries/LibHTML | |
parent | 752d297321c47ff93df4b0d8ccadb39db6ccce3f (diff) | |
download | serenity-105a97685eb318f04a2e5458c9990649b4257653.zip |
LibHTML: Fix host build after Libraries/ shuffle.
Diffstat (limited to 'Libraries/LibHTML')
-rw-r--r-- | Libraries/LibHTML/Makefile.host | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Libraries/LibHTML/Makefile.host b/Libraries/LibHTML/Makefile.host index 45e1616dd1..860dc319a2 100644 --- a/Libraries/LibHTML/Makefile.host +++ b/Libraries/LibHTML/Makefile.host @@ -1,12 +1,12 @@ all: tho -CXXFLAGS = -W -Wall -O -g -I. -I../ -std=c++17 +CXXFLAGS = -W -Wall -O -g -I. -I../ -I../../ -std=c++17 EXTRA_OBJS = \ - ../AK/StringImpl.o \ - ../AK/String.o \ - ../AK/StringBuilder.o \ - ../AK/StringView.o \ + ../../AK/StringImpl.o \ + ../../AK/String.o \ + ../../AK/StringBuilder.o \ + ../../AK/StringView.o \ ../LibCore/CEventLoop.o \ ../LibCore/CObject.o \ ../LibCore/CEvent.o \ |