diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-08-14 15:08:53 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-08-14 15:08:53 -0500 |
commit | 4f652fba67d67ff128771dba14e54bf636b50b19 (patch) | |
tree | 8bcb265bf393fa949ffcda86b5db5b38afa6ae5d | |
parent | e95982af38c2e958059964982fd2cb75518c359f (diff) | |
download | image-luarocks-4f652fba67d67ff128771dba14e54bf636b50b19.tar.gz image-luarocks-4f652fba67d67ff128771dba14e54bf636b50b19.tar.bz2 image-luarocks-4f652fba67d67ff128771dba14e54bf636b50b19.zip |
Use a different way to address config file
-rwxr-xr-x | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,5 +25,5 @@ luarocks config variables.LUA_INCDIR /root/$luaver/src | |||
25 | luarocks config variables.LUA_LIBDIR /root | 25 | luarocks config variables.LUA_LIBDIR /root |
26 | # Luarocks checks for liblua.so and liblua.a but gcc looks for liblua.dll | 26 | # Luarocks checks for liblua.so and liblua.a but gcc looks for liblua.dll |
27 | # Can't use luarocks config because it sets it as a string | 27 | # Can't use luarocks config because it sets it as a string |
28 | echo "variables.LUA_LIBDIR_OK = true" >> /etc/luarocks/config-*.lua | 28 | echo "variables.LUA_LIBDIR_OK = true" >> "$(luarocks config config_files.nearest)" |
29 | 29 | ||