diff options
Diffstat (limited to 'src/luarocks/cfg.lua')
-rw-r--r-- | src/luarocks/cfg.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/luarocks/cfg.lua b/src/luarocks/cfg.lua index b2ed2a96..330fabca 100644 --- a/src/luarocks/cfg.lua +++ b/src/luarocks/cfg.lua | |||
@@ -277,7 +277,7 @@ if detected.windows then | |||
277 | lib = { "?.dll", "lib?.dll" }, | 277 | lib = { "?.dll", "lib?.dll" }, |
278 | include = { "?.h" } | 278 | include = { "?.h" } |
279 | } | 279 | } |
280 | defaults.export_path = "SET PATH=%s;%s" | 280 | defaults.export_path = "SET PATH=%s" |
281 | defaults.export_path_separator = ";" | 281 | defaults.export_path_separator = ";" |
282 | defaults.export_lua_path = "SET LUA_PATH=%s" | 282 | defaults.export_lua_path = "SET LUA_PATH=%s" |
283 | defaults.export_lua_cpath = "SET LUA_CPATH=%s" | 283 | defaults.export_lua_cpath = "SET LUA_CPATH=%s" |
@@ -322,7 +322,7 @@ if detected.unix then | |||
322 | lib = { "lib?.so", "lib?.so.*" }, | 322 | lib = { "lib?.so", "lib?.so.*" }, |
323 | include = { "?.h" } | 323 | include = { "?.h" } |
324 | } | 324 | } |
325 | defaults.export_path = "export PATH='%s:%s'" | 325 | defaults.export_path = "export PATH='%s'" |
326 | defaults.export_path_separator = ":" | 326 | defaults.export_path_separator = ":" |
327 | defaults.export_lua_path = "export LUA_PATH='%s'" | 327 | defaults.export_lua_path = "export LUA_PATH='%s'" |
328 | defaults.export_lua_cpath = "export LUA_CPATH='%s'" | 328 | defaults.export_lua_cpath = "export LUA_CPATH='%s'" |