You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
651 B

  1. diff --git a/src/Makefile b/src/Makefile
  2. index 9be2f14..93d1dc4 100644
  3. --- a/src/Makefile
  4. +++ b/src/Makefile
  5. @@ -33,10 +33,10 @@ LDFLAGS += $(MYLDFLAGS)
  6. all:
  7. install: $(CMOD) $(LMOD)
  8. - $(INSTALL) -d $(DESTDIR)$(LUAPATH)/ssl $(DESTDIR)$(LUACPATH)
  9. - $(INSTALL) $(CMOD) $(DESTDIR)$(LUACPATH)
  10. - $(INSTALL) -m644 $(LMOD) $(DESTDIR)$(LUAPATH)
  11. - $(INSTALL) -m644 https.lua $(DESTDIR)$(LUAPATH)/ssl
  12. + $(INSTALL) -d $(LUAPATH)/ssl $(LUACPATH)
  13. + $(INSTALL) $(CMOD) $(LUACPATH)
  14. + $(INSTALL) -m644 $(LMOD) $(LUAPATH)
  15. + $(INSTALL) -m644 https.lua $(LUAPATH)/ssl
  16. linux:
  17. @$(MAKE) $(CMOD) MYCFLAGS="$(LNX_CFLAGS)" MYLDFLAGS="$(LNX_LDFLAGS)" EXTRA="$(EXTRA)"