diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-12-02 12:20:47 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-12-02 12:20:47 +0000 |
commit | 57d29c25f5fb79a23975dec214c5d04d612e30cf (patch) | |
tree | 8dade747ea1d73ba464ca0555967497352d2fa05 | |
parent | 476ea2bcb4f9387f0b420ec1d81063d0b5996b0e (diff) | |
download | master-31e0f0ae-57d29c25f5fb79a23975dec214c5d04d612e30cf.tar.gz master-31e0f0ae-57d29c25f5fb79a23975dec214c5d04d612e30cf.tar.bz2 master-31e0f0ae-57d29c25f5fb79a23975dec214c5d04d612e30cf.zip |
toolchain: use file_copy to install the initial gcc files
SVN-Revision: 34440
-rw-r--r-- | toolchain/gcc/initial/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/toolchain/gcc/initial/Makefile b/toolchain/gcc/initial/Makefile index 6a985e5af2..d1481e0a36 100644 --- a/toolchain/gcc/initial/Makefile +++ b/toolchain/gcc/initial/Makefile @@ -30,8 +30,7 @@ define Host/Install ) $(call FixupLibdir,$(TOOLCHAIN_DIR)/initial) - - $(CP) $(TOOLCHAIN_DIR)/initial/. $(TOOLCHAIN_DIR)/ + $$(call file_copy,$(TOOLCHAIN_DIR)/initial/.,$(TOOLCHAIN_DIR)/) endef $(eval $(call HostBuild)) |