builders.d: remove veryclean safety echo

This commit is contained in:
Gautier Pelloux-Prayer 2015-05-19 16:50:23 +02:00
parent e4b9cfc1de
commit 75bbf7d3c1
3 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,7 @@ clean-${cunit_project}:
make clean
veryclean-${cunit_project}:
if [ -d $(cunit_build_dir) ]; then grep -v $(prefix) $(cunit_build_dir)/install_manifest.txt | xargs echo rm; fi && \
if [ -d $(cunit_build_dir) ]; then grep -v $(prefix) $(cunit_build_dir)/install_manifest.txt | xargs rm; fi && \
rm -rf $(cunit_build_dir)
clean-makefile-${cunit_project}: veryclean-${cunit_project}

View file

@ -44,7 +44,7 @@ clean-${polarssl_project}:
make clean
veryclean-${polarssl_project}:
if [ -d $(polarssl_build_dir) ]; then grep -v $(prefix) $(polarssl_build_dir)/install_manifest.txt | xargs echo rm; fi && \
if [ -d $(polarssl_build_dir) ]; then grep -v $(prefix) $(polarssl_build_dir)/install_manifest.txt | xargs rm; fi && \
rm -rf $(polarssl_build_dir)
clean-makefile-${polarssl_project}: veryclean-${polarssl_project}

View file

@ -44,7 +44,7 @@ clean-${bzrtp_project}:
make clean
veryclean-${bzrtp_project}:
if [ -d $(bzrtp_build_dir) ]; then grep -v $(prefix) $(bzrtp_build_dir)/install_manifest.txt | xargs echo rm; fi && \
if [ -d $(bzrtp_build_dir) ]; then grep -v $(prefix) $(bzrtp_build_dir)/install_manifest.txt | xargs rm; fi && \
rm -rf $(bzrtp_build_dir)
clean-makefile-${bzrtp_project}: veryclean-${bzrtp_project}