aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarLibravatar William Ahern <william@server.local> 2013-03-11 22:46:53 -0700
committerLibravatarLibravatar William Ahern <william@server.local> 2013-03-11 22:46:53 -0700
commit0890dea992af3ec0b65f4940b2954d27b9336c0d (patch)
tree23af744f794b56a0de48d6d82ae7de7ef22c3977
parent993866fa039071ac77f5157bfdfb709bb31b5821 (diff)
downloadluaossl-0890dea992af3ec0b65f4940b2954d27b9336c0d.tar.gz
luaossl-0890dea992af3ec0b65f4940b2954d27b9336c0d.tar.bz2
luaossl-0890dea992af3ec0b65f4940b2954d27b9336c0d.zip
-n
forgot to install openssl.cipher.lua
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 45ad4aa..d484ff5 100644
--- a/Makefile
+++ b/Makefile
@@ -74,7 +74,8 @@ install: $(DESTDIR)$(luacpath)/_openssl.so \
$(DESTDIR)$(luapath)/openssl/ssl/context.lua \
$(DESTDIR)$(luapath)/openssl/ssl.lua \
$(DESTDIR)$(luapath)/openssl/digest.lua \
- $(DESTDIR)$(luapath)/openssl/hmac.lua
+ $(DESTDIR)$(luapath)/openssl/hmac.lua \
+ $(DESTDIR)$(luapath)/openssl/cipher.lua
$(DESTDIR)$(luacpath)/_openssl.so: openssl.so
mkdir -p $(@D)
@@ -124,6 +125,10 @@ $(DESTDIR)$(luapath)/openssl/hmac.lua: openssl.hmac.lua
mkdir -p $(@D)
cp -p $< $@
+$(DESTDIR)$(luapath)/openssl/cipher.lua: openssl.cipher.lua
+ mkdir -p $(@D)
+ cp -p $< $@
+
.PHONY: clean clean~ help