From 016edb19735a8165d304131b0b172a013451bd3e Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sat, 3 Apr 2021 13:21:41 +0900 Subject: [PATCH] toolbox: Change the default prefix to appease Debian package builds Debian package builds are failing because the installation prefix defaults to /usr/local instead of /usr. This changes the default prefix to /usr, to make Debian package builds happy. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4681690..f1e474f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ PHONY = install uninstall ifeq ($(PREFIX), ) - PREFIX = /usr/local + PREFIX = /usr endif all: -- 2.47.3