summaryrefslogtreecommitdiff
path: root/toolchain/gmp
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-05-02 20:40:32 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-05-02 20:40:32 +0200
commitfaf5c7fbb379f35fe61ba1c164d7fab00096f525 (patch)
treed30d56f61762aa8e8113555981c0603527bf5bef /toolchain/gmp
parent868a693acbb6b9dcda25de86faf1ec1beb349398 (diff)
same problem for ubuntu/amd64 as for cygwin amd64
Diffstat (limited to 'toolchain/gmp')
-rw-r--r--toolchain/gmp/Makefile8
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