wok rev 10362

talloc: make it build (bug in CROSS)
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 23 01:44:08 2011 +0200 (2011-05-23)
parents 1f0549928bcb
children 42c1899be1f3
files talloc/receipt
line diff
     1.1 --- a/talloc/receipt	Mon May 23 01:01:19 2011 +0200
     1.2 +++ b/talloc/receipt	Mon May 23 01:44:08 2011 +0200
     1.3 @@ -6,10 +6,11 @@
     1.4  SHORT_DESC="Hierarchical pool based memory allocator with destructors."
     1.5  MAINTAINER="gokhlayeh@slitaz.org"
     1.6  DEPENDS="glibc-base"
     1.7 -BUILD_DEPENDS="python"
     1.8 +BUILD_DEPENDS="python-dev"
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WEB_SITE="http://talloc.samba.org/"
    1.11  WGET_URL="http://samba.org/ftp/$PACKAGE/$TARBALL"
    1.12 +CROSS="bug: must use --cross-compile and --cross-execute="
    1.13  
    1.14  # Rules to configure and make the package.
    1.15  compile_rules()
    1.16 @@ -18,7 +19,7 @@
    1.17  	./configure \
    1.18  		--prefix=/usr \
    1.19  		--enable-talloc-compat1 \
    1.20 -		$CONFIGURE_ARGS &&
    1.21 +		--hostcc=$HOST_SYSTEM &&
    1.22  	make -j 4 &&
    1.23  	make DESTDIR=$PWD/_pkg install
    1.24  }