summaryrefslogtreecommitdiff
path: root/dev-util/hermes/files/hermes-2.8-lua-shebang.patch
blob: 67058f726d78af0b36e0e9799d06940c6df3e18d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
diff --git a/lib/tool.lua b/lib/tool.lua
index a9124f3..8c39911 100755
--- a/lib/tool.lua
+++ b/lib/tool.lua
@@ -1,4 +1,4 @@
-#!/usr/bin/env lua
+#!@LUA@
 
 require("strict")
 function tool()
diff --git a/bin/lua_cmd b/bin/lua_cmd
index fabc5d5..32c8e13 100755
--- a/bin/lua_cmd
+++ b/bin/lua_cmd
@@ -37,7 +37,7 @@ extra=
 if [ "x$LUA_PATH" != x ]; then
   extra=";$LUA_PATH"
 else
-  extra=";`lua -e 'print(package.path)'`"
+  extra=";`@LUA@ -e 'print(package.path)'`"
 fi
 
 export LUA_PATH="$execLuaPath$extra"