* Installer: The previous wrapper files only work on armv7

This commit is contained in:
zzz
2011-07-26 21:59:59 +00:00
parent b0c2012327
commit a98d521006
5 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,5 @@
2011-07-26 zzz
* Installer: The previous wrapper files only work on armv7
* NetDB:
- Explore even more aggressively at startup
- Increase SingleSearchJob timeout

View File

@ -40,8 +40,11 @@ X86_64=`echo "${OS_ARCH}" | grep x86_64`
case $HOST_OS in
debian | fedora | gentoo | linux | mandrake | redhat | suse )
if [ `echo $OS_ARCH |grep arm` ]; then
wrapperpath="./lib/wrapper/linux-arm"
if [ `echo $OS_ARCH |grep armv7` ]; then
wrapperpath="./lib/wrapper/linux-armv7"
cp ${wrapperpath}/libwrapper.so ./lib/
elif [ `echo $OS_ARCH |grep arm` ]; then
wrapperpath="./lib/wrapper/linux-armv5"
cp ${wrapperpath}/libwrapper.so ./lib/
elif [ "X$X86_64" = "X" ]; then
wrapperpath="./lib/wrapper/linux"