summaryrefslogtreecommitdiff
path: root/toolchain
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-05-04 12:34:03 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-05-04 12:34:03 +0200
commit0f90e70e9f8a12cb05ae050e806b333b9b1ab59c (patch)
treed9ca730df7d3945872c1cae7ead45794cdcbdf87 /toolchain
parent3acc20917b0148e90392d670c84dc86de1c2b15a (diff)
parentfaf5c7fbb379f35fe61ba1c164d7fab00096f525 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'toolchain')
-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