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 committed by Kyle McMartin
parent 561b24abd9
commit 246f94f096
1 changed files with 3 additions and 0 deletions

View File

@ -1342,6 +1342,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 ..
###