remove changelog entry for undone update
[silc.git] / distdir / post-process-dist
1 #!/bin/sh
2
3 distribution=$1
4 dist_version=$2
5 package=$3
6 distdir=$4
7
8 # Remove all CVS directories, as some may be left when we put directories
9 # in EXTRA_DIST or 'include' them in distribution.
10
11 if test -d $distdir; then
12   find $distdir -name CVS -type d | xargs rm -rf
13   find $distdir -name Makefile -type f | xargs rm -f
14 fi