From faf5c7fbb379f35fe61ba1c164d7fab00096f525 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 2 May 2011 20:40:32 +0200 Subject: same problem for ubuntu/amd64 as for cygwin amd64 --- toolchain/gmp/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/toolchain/gmp/Makefile b/toolchain/gmp/Makefile index ed0103ae9..c96ad76b2 100644 --- a/toolchain/gmp/Makefile +++ b/toolchain/gmp/Makefile @@ -12,15 +12,19 @@ endif $(WRKBUILD)/.headers: $(WRKBUILD)/.configured: +# for cygwin and ubunto on amd64 ifneq (,$(filter CYGWIN%,${OStype})) - (cd $(WRKBUILD); cp configfsf.guess config.guess); + (cd $(WRKBUILD); cp configfsf.guess config.guess) +endif +ifeq (${OStype},Linux) + (cd $(WRKBUILD); cp configfsf.guess config.guess) endif (cd $(WRKBUILD); \ ./configure \ --prefix=$(STAGING_HOST_DIR) \ --disable-shared \ --enable-static \ - ); + ) touch $@ $(WRKBUILD)/.compiled: $(WRKBUILD)/.configured -- cgit v1.2.3