Fixed this shell script so that it always generates the dlib/revision.h file

correctly.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403558
This commit is contained in:
Davis King 2010-03-07 20:53:51 +00:00
parent d435471116
commit eddd556108
1 changed files with 8 additions and 7 deletions

View File

@ -83,6 +83,8 @@ makedocs ()
svn export -r $REVISION $DLIB_REPOS/examples docs/cache/examples > /dev/null || report_failure svn export -r $REVISION $DLIB_REPOS/examples docs/cache/examples > /dev/null || report_failure
svn export -r $REVISION $DLIB_REPOS/dlib docs/cache/dlib > /dev/null || report_failure svn export -r $REVISION $DLIB_REPOS/dlib docs/cache/dlib > /dev/null || report_failure
fi;
echo "#ifndef DLIB_REVISION_H" > docs/cache/dlib/revision.h echo "#ifndef DLIB_REVISION_H" > docs/cache/dlib/revision.h
echo "// Version: " $RELEASE >> docs/cache/dlib/revision.h echo "// Version: " $RELEASE >> docs/cache/dlib/revision.h
echo "// Date: " `date` >> docs/cache/dlib/revision.h echo "// Date: " `date` >> docs/cache/dlib/revision.h
@ -90,7 +92,6 @@ makedocs ()
echo "#define DLIB_REVISION " $REVISION >> docs/cache/dlib/revision.h echo "#define DLIB_REVISION " $REVISION >> docs/cache/dlib/revision.h
echo "#endif" >> docs/cache/dlib/revision.h echo "#endif" >> docs/cache/dlib/revision.h
fi;
rm -rf docs/web/* rm -rf docs/web/*
rm -rf docs/chm/docs/* rm -rf docs/chm/docs/*