From 51c12f72d626cfd412515985bac2a10b5c2a74ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?agentzh=20=28=E7=AB=A0=E4=BA=A6=E6=98=A5=29?= Date: Fri, 24 Feb 2012 14:49:55 +0800 Subject: [PATCH] now we apply the official hotfix #1 patch for luajit 2.0.0 beta9. --- util/mirror-tarballs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/util/mirror-tarballs b/util/mirror-tarballs index 655ac8f..4701fef 100755 --- a/util/mirror-tarballs +++ b/util/mirror-tarballs @@ -224,9 +224,10 @@ $root/util/get-tarball "http://luajit.org/download/LuaJIT-$ver.tar.gz" -O "LuaJI tar -xzf LuaJIT-$ver.tar.gz || 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 +$root/util/get-tarball http://luajit.org/download/beta9_hotfix1.patch -O beta9_hotfix1.patch +patch -p1 < beta9_hotfix1.patch || exit 1 +rm beta9_hotfix1.patch || exit 1 + cp $root/misc/unwind-generic.h ./unwind.h || exit 1 cd ..