From c35ea7d2a4f72eec5b730cee90cec3819887c174 Mon Sep 17 00:00:00 2001 From: Brian Woods Date: Wed, 22 Feb 2023 23:27:29 -0500 Subject: webp: fix makefile dependency bug The prebuild where it generates the directory structure wasn't a dependency for the build part so it was causing parallel jobs to fail since there wasn't directories to put the output files. --- webp/Makefile.single | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webp/Makefile.single') diff --git a/webp/Makefile.single b/webp/Makefile.single index a34f1d2..2010137 100644 --- a/webp/Makefile.single +++ b/webp/Makefile.single @@ -18,7 +18,7 @@ pre-build: main-build: ${OUT} -${OUT_DIR}/%.webp: ${SRC_DIR}/%.png +${OUT_DIR}/%.webp: ${SRC_DIR}/%.png pre-build cwebp ${WEBP_OPT} "$<" -o "$@" clean: -- cgit v1.2.3