Skip to content

Commit dbc9b6f

Browse files
committed
Makefile: we did not install the ngx.ssl.* module files.
1 parent ad6539d commit dbc9b6f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
OPENRESTY_PREFIX=/usr/local/openresty
22

3+
#LUA_VERSION := 5.1
34
PREFIX ?= /usr/local
45
LUA_INCLUDE_DIR ?= $(PREFIX)/include
56
LUA_LIB_DIR ?= $(PREFIX)/lib/lua/$(LUA_VERSION)
@@ -12,9 +13,11 @@ all: ;
1213
install: all
1314
$(INSTALL) -d $(DESTDIR)$(LUA_LIB_DIR)/resty/core/
1415
$(INSTALL) -d $(DESTDIR)$(LUA_LIB_DIR)/ngx/
16+
$(INSTALL) -d $(DESTDIR)$(LUA_LIB_DIR)/ngx/ssl
1517
$(INSTALL) lib/resty/*.lua $(DESTDIR)$(LUA_LIB_DIR)/resty/
1618
$(INSTALL) lib/resty/core/*.lua $(DESTDIR)$(LUA_LIB_DIR)/resty/core/
1719
$(INSTALL) lib/ngx/*.lua $(DESTDIR)$(LUA_LIB_DIR)/ngx/
20+
$(INSTALL) lib/ngx/ssl/*.lua $(DESTDIR)$(LUA_LIB_DIR)/ngx/ssl/
1821

1922
test: all
2023
PATH=$(OPENRESTY_PREFIX)/nginx/sbin:$$PATH prove -I../test-nginx/lib -r t

0 commit comments

Comments
 (0)