From 7e55104555bffbcfdff2fa6ef8bfe50526edf016 Mon Sep 17 00:00:00 2001 From: lrdshaper <39327429+lrdshaper@users.noreply.github.com> Date: Tue, 4 Jun 2019 16:34:43 +0800 Subject: [PATCH] Fix an issue when running 'make install' mod_proxy_protocol.c was getting installed instead of mod_proxy_protocol.so --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9a3c4de..c0ff43b 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ all: .libs/mod_proxy_protocol.so # install the so - usually needs root access install: .libs/mod_proxy_protocol.so - $(APXS) -i mod_proxy_protocol.c + $(APXS) -i mod_proxy_protocol.la # generate the html doc docs: mod_proxy_protocol.html