From 2de4e1ff66e1db9c2464dd32512530825b28c0bb Mon Sep 17 00:00:00 2001 From: "Derek J. Clark" Date: Fri, 5 Jun 2026 14:59:06 -0700 Subject: [PATCH] chore(Makefile): Don't call build in install target Removes build from install target to reduce build times in CI. PKGBUILD already calls build prior to install, install.md already tells the user to run make build before sudo make install. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b359495c..70d2dc53 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ help: ## Display this help. @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST) .PHONY: install -install: build ## Install inputplumber to the given prefix (default: PREFIX=/usr) +install: ## Install inputplumber to the given prefix (default: PREFIX=/usr) install -D -m 755 target/$(TARGET_ARCH)/$(BUILD_TYPE)/$(NAME) \ $(PREFIX)/bin/$(NAME) install -D -m 644 rootfs/usr/share/dbus-1/system.d/$(DBUS_NAME).conf \