# HG changeset patch # User Christophe Lincoln # Date 1305832481 -7200 # Node ID dd0e8a306fc7366278c5aec728a4d090fccb04e0 # Parent 614a9e8d90a48c34bc34df4cd634c2f23b8b3eba gmp, mpc-library, mpfr: fix build system wirh --build and --host from CONFIGURE_ARGS diff -r 614a9e8d90a4 -r dd0e8a306fc7 gmp/receipt --- a/gmp/receipt Thu May 19 19:09:40 2011 +0200 +++ b/gmp/receipt Thu May 19 21:14:41 2011 +0200 @@ -16,9 +16,9 @@ { cd $src # gmp try to cook for 64bits system if kernel can support when using - # tmp toolchain + # tmp toolchain. Not only and this export does nothing !!! export ABI=32 - ./configure && + ./configure $CONFIGURE_ARGS && make && # -j > 1 make install fails. make -j 1 install diff -r 614a9e8d90a4 -r dd0e8a306fc7 mpc-library/receipt --- a/mpc-library/receipt Thu May 19 19:09:40 2011 +0200 +++ b/mpc-library/receipt Thu May 19 21:14:41 2011 +0200 @@ -16,7 +16,7 @@ compile_rules() { cd $src - ./configure && make && make install + ./configure $CONFIGURE_ARGS && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. diff -r 614a9e8d90a4 -r dd0e8a306fc7 mpfr/receipt --- a/mpfr/receipt Thu May 19 19:09:40 2011 +0200 +++ b/mpfr/receipt Thu May 19 21:14:41 2011 +0200 @@ -17,7 +17,8 @@ { cd $src patch -Np1 -i $stuff/$PACKAGE-$VERSION.patch - ./configure && make && make install + ./configure $CONFIGURE_ARGS && + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg.