applied the official hotfix1 patch for LuaJIT 2.0.0 beta8; also released ngx_openresty 1.0.4.1rc4.
This commit is contained in:
parent
b7e7398fc9
commit
557f52794c
|
@ -181,7 +181,7 @@ cp $root/patches/lua-$ver-makefile_install_fix.patch lua-makefile-fix.patch || e
|
|||
|
||||
patch -p0 < lua-makefile-fix.patch || exit 1
|
||||
|
||||
rm lua-makefile-fix.patch
|
||||
rm lua-makefile-fix.patch || exit 1
|
||||
|
||||
#################################
|
||||
|
||||
|
@ -189,7 +189,11 @@ ver=2.0.0-beta8
|
|||
$root/util/get-tarball "http://luajit.org/download/LuaJIT-$ver.tar.gz" -O "LuaJIT-$ver.tar.gz" || exit 1
|
||||
tar -xzf LuaJIT-$ver.tar.gz || exit 1
|
||||
|
||||
#patch -p0 < $root/patches/LuaJIT-$ver-symlink_lib.patch || exit 1
|
||||
cd LuaJIT-$ver || exit 1;
|
||||
$root/util/get-tarball http://luajit.org/download/beta8_hotfix1.patch -O beta8_hotfix1.patch
|
||||
patch -p1 < beta8_hotfix1.patch || exit 1
|
||||
rm beta8_hotfix1.patch || exit 1
|
||||
cd ..
|
||||
|
||||
#################################
|
||||
|
||||
|
|
Loading…
Reference in New Issue