libstd-rs: support debug builds

This commit is contained in:
Steven Walter
2018-07-12 10:52:49 -04:00
parent 6052c90ca8
commit cef09a5551
+2 -2
View File
@@ -23,6 +23,6 @@ do_install () {
# With the incremental build support added in 1.24, the libstd deps directory also includes dependency # With the incremental build support added in 1.24, the libstd deps directory also includes dependency
# files that get installed. Those are really only needed to incrementally rebuild the libstd library # files that get installed. Those are really only needed to incrementally rebuild the libstd library
# itself and don't need to be installed. # itself and don't need to be installed.
rm ${B}/${TARGET_SYS}/release/deps/*.d rm ${B}/${TARGET_SYS}/${BUILD_DIR}/deps/*.d
cp ${B}/${TARGET_SYS}/release/deps/* ${D}${rustlibdir} cp ${B}/${TARGET_SYS}/${BUILD_DIR}/deps/* ${D}${rustlibdir}
} }