I am using some shell commands in the Android.mk, like
$(shell rm -rfv $(TARGET_OUT)/xxx)
And I want to see the command out put during the building process. However, the out put is always single line when I use either
$(info $(shell rm -frv $(TARGET_OUT)/www))
or
$(info "$(shell rm -frv $(TARGET_OUT)/www)")
The result is like
removed `out/target/product/xxx/system/xxx/xxx.xxx' removed directory: `out/target/product/xxx/system/xxx/xxx'
instead of
removed `out/target/product/xxx/system/xxx/xxx.xxx'
removed directory: `out/target/product/xxx/system/xxx/xxx'
Does anyone know how to fix this?