Remove tar ball from installed directory.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50717 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2008-05-06 08:33:07 +00:00
parent 21037da713
commit 1f85129eb7

View File

@ -234,6 +234,11 @@ find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
chgrp -h -R wheel $DEST_DIR
chgrp -R wheel $DEST_DIR
################################################################################
# Remove tar ball from docs directory
find $DEST_DIR -name html.tar.gz -exec rm {} \;
################################################################################
# w00t! Done!