Fri Jan 6 13:08:15 CET 2006 Jochen Eisinger <coffee@silcnet.org>
[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