summaryrefslogtreecommitdiffstats
path: root/package/dmalloc
diff options
context:
space:
mode:
authorReuben Dowle <reuben.dowle@4rf.com>2013-02-13 15:12:02 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-05-04 22:39:16 +0200
commit93e5c7d9f2964dcee6acca94e17075f042ba1751 (patch)
treeb6305ec79d513c016b601dc8ce1f3ff046460572 /package/dmalloc
parentd26b5a26b9cb8179df76c930130a165f4cc188b6 (diff)
downloadbuildroot-novena-93e5c7d9f2964dcee6acca94e17075f042ba1751.tar.gz
buildroot-novena-93e5c7d9f2964dcee6acca94e17075f042ba1751.zip
dmalloc: Stop libdmalloc*.so files from being deleted from staging directory
Fix libdmalloc*.so files being deleted from the staging directory as the package is installed into the target. Signed-off-by: Reuben Dowle <reuben.dowle at 4rf.com>
Diffstat (limited to 'package/dmalloc')
-rw-r--r--package/dmalloc/dmalloc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/dmalloc/dmalloc.mk b/package/dmalloc/dmalloc.mk
index 86238291c..fd4e97680 100644
--- a/package/dmalloc/dmalloc.mk
+++ b/package/dmalloc/dmalloc.mk
@@ -47,7 +47,7 @@ define DMALLOC_INSTALL_STAGING_CMDS
endef
define DMALLOC_INSTALL_TARGET_CMDS
- mv $(STAGING_DIR)/usr/lib/libdmalloc*.so $(TARGET_DIR)/usr/lib
+ cp -dpf $(STAGING_DIR)/usr/lib/libdmalloc*.so $(TARGET_DIR)/usr/lib
cp -dpf $(STAGING_DIR)/usr/bin/dmalloc $(TARGET_DIR)/usr/bin/dmalloc
endef