libsodium: Update from 1.0.10 to 1.0.11
[termux-packages] / packages / luarocks / Makefile.patch
1 Use luajit instead of lua.
2
3 diff -u -r ../luarocks-2.1.2/Makefile ./Makefile
4 --- ../luarocks-2.1.2/Makefile 2014-01-10 20:03:03.000000000 +0100
5 +++ ./Makefile 2014-07-09 02:51:43.896335398 +0200
6 @@ -129,7 +129,7 @@
7 for f in $(BIN_FILES) ;\
8 do \
9 mv src/bin/$$f src/bin/$$f.bak ;\
10 - sed "s,^#!.*lua.*,#!/usr/bin/env lua,;/^package.path/d" < src/bin/$$f.bak > src/bin/$$f ;\
11 + sed "s,^#!.*lua.*,#!/usr/bin/env luajit,;/^package.path/d" < src/bin/$$f.bak > src/bin/$$f ;\
12 chmod +x src/bin/$$f ;\
13 rm -f src/bin/$$f.bak ;\
14 done