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 d1735ff0..4bb376a4 100644 --- a/src/luarocks/cfg.lua +++ b/src/luarocks/cfg.lua | |||
@@ -243,12 +243,12 @@ if detected.unix then | |||
243 | defaults.variables.LIBFLAG = "-shared" | 243 | defaults.variables.LIBFLAG = "-shared" |
244 | defaults.external_deps_patterns = { | 244 | defaults.external_deps_patterns = { |
245 | bin = { "?" }, | 245 | bin = { "?" }, |
246 | lib = { "lib?.a", "lib?.so" }, | 246 | lib = { "lib?.a", "lib?.so", "lib?.so.*" }, |
247 | include = { "?.h" } | 247 | include = { "?.h" } |
248 | } | 248 | } |
249 | defaults.runtime_external_deps_patterns = { | 249 | defaults.runtime_external_deps_patterns = { |
250 | bin = { "?" }, | 250 | bin = { "?" }, |
251 | lib = { "lib?.so" }, | 251 | lib = { "lib?.so", "lib?.so.*" }, |
252 | include = { "?.h" } | 252 | include = { "?.h" } |
253 | } | 253 | } |
254 | defaults.local_cache = home.."/.cache/luarocks" | 254 | defaults.local_cache = home.."/.cache/luarocks" |