浏览代码

same problem for ubuntu/amd64 as for cygwin amd64

Waldemar Brodkorb 14 年之前
父节点
当前提交
faf5c7fbb3
共有 1 个文件被更改,包括 6 次插入2 次删除
  1. 6 2
      toolchain/gmp/Makefile

+ 6 - 2
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