Commit ab25f195 authored by Lev Walkin's avatar Lev Walkin

avoid removing directory with potentially modified/linked useful sources

parent 7c470c7c
......@@ -42,7 +42,9 @@ parallelism=4
asn1c_flags=""
make_clean_before_bundle() {
test "${need_clean_before_bundle}" = "1" && rm -rf ${RNDTEMP}
if [ "${need_clean_before_bundle}" = "1" ] ; then
(cd ${RNDTEMP} && make clean) || :
fi
}
make_clean_before_test() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment