diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-03-02 23:10:49 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-04-09 11:04:33 +0200 |
commit | b605699f1f365c55d094c47737d3f5f7e38c1f61 (patch) | |
tree | 74dbf82010675f390f113a772565151286f358db /target/ext2/ext2root.mk | |
parent | 77ab5443080dd994dd9dbe9c9eec302f83525dde (diff) | |
download | buildroot-novena-b605699f1f365c55d094c47737d3f5f7e38c1f61.tar.gz buildroot-novena-b605699f1f365c55d094c47737d3f5f7e38c1f61.zip |
target/: remove the COPYTO mess
There's no need to provide options to copy the filesystem image after
the build. Just use 'cp' outside of Buildroot.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'target/ext2/ext2root.mk')
-rw-r--r-- | target/ext2/ext2root.mk | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/target/ext2/ext2root.mk b/target/ext2/ext2root.mk index 6c8e02a9b..145b182fe 100644 --- a/target/ext2/ext2root.mk +++ b/target/ext2/ext2root.mk @@ -82,13 +82,7 @@ $(EXT2_BASE).$(EXT2_ROOTFS_COMPRESSOR_EXT): $(EXT2_ROOTFS_COMPRESSOR_PREREQ) $(E $(EXT2_ROOTFS_COMPRESSOR) $(EXT2_BASE) > $(EXT2_TARGET) endif -EXT2_COPYTO := $(call qstrip,$(BR2_TARGET_ROOTFS_EXT2_COPYTO)) - ext2root: $(EXT2_TARGET) - @ls -l $(EXT2_TARGET) -ifneq ($(EXT2_COPYTO),) - @cp -f $(EXT2_TARGET) $(EXT2_COPYTO) -endif ############################################################# # |