diff options
author | William Ahern <william@server.local> | 2013-03-11 22:46:53 -0700 |
---|---|---|
committer | William Ahern <william@server.local> | 2013-03-11 22:46:53 -0700 |
commit | 0890dea992af3ec0b65f4940b2954d27b9336c0d (patch) | |
tree | 23af744f794b56a0de48d6d82ae7de7ef22c3977 | |
parent | 993866fa039071ac77f5157bfdfb709bb31b5821 (diff) | |
download | luaossl-0890dea992af3ec0b65f4940b2954d27b9336c0d.tar.gz luaossl-0890dea992af3ec0b65f4940b2954d27b9336c0d.tar.bz2 luaossl-0890dea992af3ec0b65f4940b2954d27b9336c0d.zip |
-n
forgot to install openssl.cipher.lua
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |