From 3773af632c558bb058a72e43ac25762ae74630c8 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Fri, 3 Jul 2026 15:34:19 +0100 Subject: [PATCH] fix bin/pp rule --- http/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/Makefile b/http/Makefile index 5dbca5b..51c93a1 100644 --- a/http/Makefile +++ b/http/Makefile @@ -109,7 +109,7 @@ share/man/man1/pp.1: out: bin/pp $(out_deps) bin/pp: - cd pp && $(MAKE) && chmod +x pp && cp pp ../bin/pp + $(MAKE) --directory=pp && chmod +x pp/pp && cp pp/pp bin/pp $(foreach ext,$(sort $(out_deps_ext)),\ $(eval $(out_rule)))