From 54cc960db0bb8fe1d6b2dde1d79d4a24e726ad36 Mon Sep 17 00:00:00 2001 From: Kevin Vigor Date: Mon, 6 May 2019 15:41:29 -0600 Subject: liburing: improve 'make install' 'make install' did not install all the headers necessary to use the library; fix. Additionally allow specifying the install prefix, which was previously hardcoded to /usr. Signed-off-by: Kevin Vigor Signed-off-by: Jens Axboe --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index cbc3504..37ee081 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ TAG = $(NAME)-$(VERSION) RPMBUILD=$(shell `which rpmbuild >&/dev/null` && echo "rpmbuild" || echo "rpm") INSTALL=install -prefix=/usr +prefix ?= /usr includedir=$(prefix)/include libdir=$(prefix)/lib mandir=$(prefix)/man -- cgit