diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-05-02 20:40:32 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-05-02 20:40:32 +0200 |
commit | faf5c7fbb379f35fe61ba1c164d7fab00096f525 (patch) | |
tree | d30d56f61762aa8e8113555981c0603527bf5bef | |
parent | 868a693acbb6b9dcda25de86faf1ec1beb349398 (diff) |
same problem for ubuntu/amd64 as for cygwin amd64
-rw-r--r-- | toolchain/gmp/Makefile | 8 |
1 files 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 |