The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / luajit / 0006-install-so.patch
1 fix the following runtime error :
2     luajit: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory
3
4 by creating two symbolic links:
5     libluajit-5.1.so -> libluajit-5.1.so.2.0.3
6     libluajit-5.1.so.2 -> libluajit-5.1.so.2.0.3
7
8 Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
9
10 Index: b/Makefile
11 ===================================================================
12 --- a/Makefile
13 +++ b/Makefile
14 @@ -56,7 +56,7 @@
15  INSTALL_STATIC= $(INSTALL_LIB)/$(INSTALL_ANAME)
16  INSTALL_DYN= $(INSTALL_LIB)/$(INSTALL_SONAME)
17  INSTALL_SHORT1= $(INSTALL_LIB)/$(INSTALL_SOSHORT)
18 -INSTALL_SHORT2= $(INSTALL_LIB)/$(INSTALL_SOSHORT)
19 +INSTALL_SHORT2= $(INSTALL_LIB)/$(INSTALL_SOSHORT).$(MAJVER)
20  INSTALL_T= $(INSTALL_BIN)/$(INSTALL_TNAME)
21  INSTALL_TSYM= $(INSTALL_BIN)/$(INSTALL_TSYMNAME)
22  INSTALL_PC= $(INSTALL_PKGCONFIG)/$(INSTALL_PCNAME)