remove .gitignores from the source tree, so they don't end up getting packaged.

This commit is contained in:
Dave Jones 2010-10-26 13:56:20 -04:00
parent 3405f5fbff
commit c6761a0576
1 changed files with 3 additions and 0 deletions

View File

@ -1394,6 +1394,9 @@ done
# get rid of unwanted files resulting from patch fuzz
find . \( -name "*.orig" -o -name "*~" \) -exec rm -f {} \; >/dev/null
# remove unnecessary SCM files
find . -name .gitignore -exec rm -f {} \; >/dev/null
cd ..
###