From dd989e8e392d61d07ecdd740a156a8155008257a Mon Sep 17 00:00:00 2001 From: dacctal Date: Sun, 31 May 2026 10:41:32 +0000 Subject: build will kill the program if no usable build system was found --- src/build.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/build.c b/src/build.c index a84a13a..02bbef4 100644 --- a/src/build.c +++ b/src/build.c @@ -1,4 +1,5 @@ #include +#include #include #include @@ -18,5 +19,6 @@ void build(Pkg pkg) { return; } - printf("%sno usable build system was found\n", print_error); + printf("%s no usable build system was found\n", print_error); + exit(EXIT_FAILURE); } \ No newline at end of file -- cgit v1.2.3