Skip to content

Commit

Permalink
Fix an issue when running 'make install'
Browse files Browse the repository at this point in the history
mod_proxy_protocol.c was getting installed instead of mod_proxy_protocol.so
  • Loading branch information
lrdshaper authored and roadrunner2 committed Jul 20, 2019
1 parent 78cd88c commit 7e55104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7e55104

Please sign in to comment.