wok rev 15227

libidn: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 22 18:14:35 2013 +0200 (2013-09-22)
parents 246964d7c465
children 4e2cb1cd3aca
files libidn/receipt
line diff
     1.1 --- a/libidn/receipt	Sun Sep 22 18:06:29 2013 +0200
     1.2 +++ b/libidn/receipt	Sun Sep 22 18:14:35 2013 +0200
     1.3 @@ -5,6 +5,7 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="Encode and decode internationalized domain names."
     1.6  MAINTAINER="pascal.bellard@slitaz.org"
     1.7 +LICENSE="GPL3 LGPL2.1"
     1.8  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.9  WEB_SITE="http://www.gnu.org/software/$PACKAGE/"
    1.10  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.11 @@ -14,14 +15,15 @@
    1.12  {
    1.13  	cd $src
    1.14  	./configure $CONFIGURE_ARGS &&
    1.15 -	make &&	make install
    1.16 +	make $MAKEFLAGS 2>&1 | grep -v STRERROR &&
    1.17 +	make install
    1.18  }
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23  	mkdir -p $fs/usr/lib
    1.24 -	cp -a $_pkg/usr/bin $fs/usr
    1.25 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.26 +	cp -a $install/usr/bin $fs/usr
    1.27 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.28  }
    1.29