Add --distcheck.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19691 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-01-04 13:43:22 +00:00
parent 8364e04c73
commit bf95f1527a

View File

@@ -46,6 +46,7 @@ hversion=
cvsroot=
cvsflags=
autotools=no
distcheck=no
while true
do
@@ -85,6 +86,10 @@ do
hversion="heimdal-$2"
shift 2
;;
--distcheck)
distcheck=yes
shift 2
;;
--result-directory)
resultdir="$2"
if [ ! -d "$resultdir" ]; then
@@ -243,6 +248,15 @@ if [ $? != 0 ] ; then
echo Make check failed
status=${status:-make check}
fi
if [ "$distcheck" = yes ] ; then
echo make distcheck >> ab.txt
if [ $? != 0 ] ; then
echo Make check failed
status=${status:-make distcheck}
fi
fi
status=${status:-ok}
echo "done: ${status}"