Blame view

buildroot/buildroot-2016.08.1/package/luajit/0003-install-so.patch 842 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  fix the following runtime error :
      luajit: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory
  
  by creating two symbolic links:
      libluajit-5.1.so -> libluajit-5.1.so.2.0.3
      libluajit-5.1.so.2 -> libluajit-5.1.so.2.0.3
  
  Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
  
  Index: b/Makefile
  ===================================================================
  --- a/Makefile
  +++ b/Makefile
  @@ -55,7 +55,7 @@
   INSTALL_STATIC= $(INSTALL_LIB)/$(INSTALL_ANAME)
   INSTALL_DYN= $(INSTALL_LIB)/$(INSTALL_SONAME)
   INSTALL_SHORT1= $(INSTALL_LIB)/$(INSTALL_SOSHORT)
  -INSTALL_SHORT2= $(INSTALL_LIB)/$(INSTALL_SOSHORT)
  +INSTALL_SHORT2= $(INSTALL_LIB)/$(INSTALL_SOSHORT).$(MAJVER)
   INSTALL_T= $(INSTALL_BIN)/$(INSTALL_TNAME)
   INSTALL_PC= $(INSTALL_PKGCONFIG)/$(INSTALL_PCNAME)