wok rev 15236

texinfo: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 22 21:03:37 2013 +0200 (2013-09-22)
parents 75d89e79170f
children 6605161a54b7
files texinfo/receipt
line diff
     1.1 --- a/texinfo/receipt	Sun Sep 22 21:01:33 2013 +0200
     1.2 +++ b/texinfo/receipt	Sun Sep 22 21:03:37 2013 +0200
     1.3 @@ -5,6 +5,7 @@
     1.4  CATEGORY="development"
     1.5  SHORT_DESC="GNU documentation tools."
     1.6  MAINTAINER="rcx@zoominternet.net"
     1.7 +LICENSE="GPL3"
     1.8  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.9  WEB_SITE="http://www.gnu.org/software/texinfo/"
    1.10  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.11 @@ -17,7 +18,9 @@
    1.12  cook_tmp_toolchain()
    1.13  {
    1.14  	cd $src
    1.15 -	./configure && make && make install
    1.16 +	./configure &&
    1.17 +	make $MAKEFLAGS 2>&1 | grep -v STRERROR &&
    1.18 +	make install
    1.19  }
    1.20  
    1.21  # Rules to configure and make the package.
    1.22 @@ -32,6 +35,6 @@
    1.23  genpkg_rules()
    1.24  {
    1.25  	mkdir -p  $fs/usr/share
    1.26 -	cp -a $_pkg/usr/bin $fs/usr
    1.27 -	cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
    1.28 +	cp -a $install/usr/bin $fs/usr
    1.29 +	cp -a $install/usr/share/$PACKAGE $fs/usr/share
    1.30  }