diff options
author | sibel <lesibel@free.fr> | 2011-01-25 17:59:20 +0100 |
---|---|---|
committer | sibel <lesibel@free.fr> | 2011-01-25 17:59:20 +0100 |
commit | 66c2db2115fea7fe1e8466136fac0f5b16957f1b (patch) | |
tree | 28710ea1505bd5e71fc6e82483403b773ee1d79a /extra | |
parent | ac311a9cb45ffc62a1baa4106de43ed4414de471 (diff) | |
download | nutyx-pakxe-66c2db2115fea7fe1e8466136fac0f5b16957f1b.tar.gz nutyx-pakxe-66c2db2115fea7fe1e8466136fac0f5b16957f1b.tar.bz2 nutyx-pakxe-66c2db2115fea7fe1e8466136fac0f5b16957f1b.tar.xz nutyx-pakxe-66c2db2115fea7fe1e8466136fac0f5b16957f1b.zip |
lua, correction port 5.1.4-3
Diffstat (limited to 'extra')
-rw-r--r-- | extra/lua/Pkgfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/lua/Pkgfile b/extra/lua/Pkgfile index ab0918344..22ed2d716 100644 --- a/extra/lua/Pkgfile +++ b/extra/lua/Pkgfile @@ -7,7 +7,7 @@ name=lua version=5.1.4 -release=2 +release=3 source=(http://www.lua.org/ftp/$name-$version.tar.gz lua-5.1.4-patch-lua.patch lua-5.1.4-cflags.diff) @@ -16,8 +16,8 @@ build() { cd $name-$version patch < $SRC/lua-5.1.4-patch-lua.patch -d src - [ "$CARCH" == "x86_64" ] && patch -Np1 -i ../lua-5.1.4-cflags.diff - [ "$CARCH" == "x86_64" ] && export CFLAGS="$CFLAGS -fPIC" + [ `uname -i` == "x86_64" ] && patch -Np1 -i ../lua-5.1.4-cflags.diff + [ `uname -i` == "x86_64" ] && export CFLAGS="$CFLAGS -fPIC" make linux make INSTALL_TOP=$PKG/usr install |