diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-06 17:29:01 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-06 17:30:14 +0100 |
commit | d83df882620ce3fb6a4a02dc2875c96471b59d89 (patch) | |
tree | 6f3ff366f931f1598519f2517868aa7e03297df2 /toolchain/gmp | |
parent | 8d27683011689b3a72b8ab18ed0e2b359a40570f (diff) |
install config.sub and config.guess always
We need it for toolchain components.
Add latest config.sub/config.guess from upstream
with a minor patch for sh2eb detection.
Diffstat (limited to 'toolchain/gmp')
-rw-r--r-- | toolchain/gmp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/gmp/Makefile b/toolchain/gmp/Makefile index fbc8687e0..7b805beea 100644 --- a/toolchain/gmp/Makefile +++ b/toolchain/gmp/Makefile @@ -14,7 +14,6 @@ ifeq (${ARCH_FOR_BUILD},x32) GMP_CONFOPTS+= ABI=x32 endif -$(WRKBUILD)/.headers: $(WRKBUILD)/.configured: ifneq ($(OStype),Darwin) (cd $(WRKBUILD); cp configfsf.guess config.guess) @@ -30,7 +29,8 @@ endif touch $@ $(WRKBUILD)/.compiled: $(WRKBUILD)/.configured - env PATH="$(STAGING_HOST_DIR)/usr/bin:$$PATH" $(MAKE) ${GMP_MAKEOPTS} -C $(WRKBUILD) all + env PATH="$(STAGING_HOST_DIR)/usr/bin:$$PATH" \ + $(MAKE) ${GMP_MAKEOPTS} -C $(WRKBUILD) all touch $@ $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled |