wok diff libxml2/receipt @ rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents 0bd0738f4d00
children 0253e30fe373
line diff
     1.1 --- a/libxml2/receipt	Sun Dec 08 18:53:33 2013 +0000
     1.2 +++ b/libxml2/receipt	Tue Nov 04 08:58:28 2014 +0100
     1.3 @@ -16,8 +16,11 @@
     1.4  
     1.5  # When cross compiling Python is installed in chroot and is used
     1.6  # by cross tools, cook dont need to install it in /usr/cross/arm
     1.7 +# Building with LZMA support is buggy and build fails
     1.8  case "$ARCH" in
     1.9 -	arm) BUILD_DEPENDS="" ;;
    1.10 +	arm)
    1.11 +		BUILD_DEPENDS="" 
    1.12 +		ARCH_ARGS="--without-lzma" ;;
    1.13  esac
    1.14  
    1.15  # Rules to configure and make the package.
    1.16 @@ -26,7 +29,6 @@
    1.17  # and binaries are splited into libxml2-tools
    1.18  compile_rules()
    1.19  {
    1.20 -	cd $src
    1.21  	autoreconf -fi
    1.22  	./configure \
    1.23  		--prefix=/usr \
    1.24 @@ -35,7 +37,7 @@
    1.25  		--with-html-dir=/usr/share/doc \
    1.26  		--with-threads \
    1.27  		--with-history \
    1.28 -	$CONFIGURE_ARGS &&
    1.29 +	$CONFIGURE_ARGS $ARCH_ARGS &&
    1.30  	make &&
    1.31  	make DESTDIR=$DESTDIR install 2>&1 | grep -v "can't stat './..html':"
    1.32  }