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.

20 lines
431 B

  1. --- luasec-luasec-0.5-old/src/luasocket/Makefile 2014-01-29 21:43:33.000000000 +0100
  2. +++ luasec-luasec-0.5/src/luasocket/Makefile 2014-11-30 13:07:44.850051000 +0100
  3. @@ -6,7 +6,7 @@
  4. CC ?= cc
  5. CFLAGS += $(MYCFLAGS) -DLUASOCKET_DEBUG
  6. -AR := ar rcu
  7. +AR ?= ar
  8. RANLIB ?= ranlib
  9. .PHONY: all clean
  10. @@ -14,7 +14,7 @@
  11. all: libluasocket.a
  12. libluasocket.a: $(OBJS)
  13. - $(AR) $@ $(OBJS)
  14. + $(AR) rcu $@ $(OBJS)
  15. $(RANLIB) $@
  16. clean: