summary refs log blame commit diff
path: root/pkgs/desktops/enlightenment/efl-elua.patch
blob: 96c42b3ff3ca1beb131f270ec012bfd7ff59b8b9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                   
--- ./src/scripts/elua/core/util.lua.old	2015-05-17 11:59:57.307743243 +0200
+++ ./src/scripts/elua/core/util.lua	2015-05-17 12:39:11.906797377 +0200
@@ -159,7 +159,10 @@
         local ev = os.getenv("ELUA_" .. libname:upper() .. "_LIBRARY_PATH")
         local succ, v = load_lib(libname, ev)
         if not succ then
-            error(v, 2)
+            succ, v = load_lib(libname, "$out/lib")
+            if not succ then
+                error(v, 2)
+            end
         end
         lib = v
         loaded_libs[libname] = lib