From 270beb516564b3a154a78523babb7d40910b1165 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 20 Dec 2019 21:13:53 +0100 Subject: [PATCH] LibC: Always install as part of the default target We always want to put crt0.o in the location where it can get picked up by the i686-pc-serenity toolchain. This feels a bit hackish but should get the build working again. :^) --- Libraries/LibC/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibC/Makefile b/Libraries/LibC/Makefile index 3f09712d4b..522e5c545b 100644 --- a/Libraries/LibC/Makefile +++ b/Libraries/LibC/Makefile @@ -71,7 +71,7 @@ DEFINES = -DSERENITY_LIBC_BUILD LIBRARY = libc.a -all: $(LIBRARY) startfiles +all: $(LIBRARY) startfiles install install: mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/sys/