From eba1e1e7479224d6f9fdbe47cf7dcedc69954c3e Mon Sep 17 00:00:00 2001 From: Brian Woods Date: Wed, 22 Feb 2023 16:42:02 -0500 Subject: webp: fixed a bug src/ was hard coded in the find command, changed that to ${SRC_DIR} --- 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 c84a4b8..a34f1d2 100644 --- a/webp/Makefile.single +++ b/webp/Makefile.single @@ -5,7 +5,7 @@ SRC_DIR=src OUT_DIR=high_quality WEBP_OPT=-near_lossless 60 -SRC=$(shell find src/ -type f -name '*.png') +SRC=$(shell find ${SRC_DIR}/ -type f -name '*.png') OUT=$(patsubst ${SRC_DIR}/%.png, ${OUT_DIR}/%.webp, $(SRC)) .PHONY: all clean -- cgit v1.2.3