mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-24 07:41:10 -04:00
remove false positive for out of date documentation
This commit is contained in:
parent
813b34ebec
commit
3d2ce18535
1 changed files with 11 additions and 2 deletions
13
util/kit.sh
13
util/kit.sh
|
|
@ -15,7 +15,7 @@
|
|||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
# PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: kit.sh,v 1.35 2009/07/16 23:47:55 tbox Exp $
|
||||
# $Id: kit.sh,v 1.36 2009/08/14 06:17:20 marka Exp $
|
||||
|
||||
# Make a release kit
|
||||
#
|
||||
|
|
@ -142,7 +142,16 @@ done
|
|||
|
||||
# check that documentation has been updated properly; issue a warning
|
||||
# if it hasn't
|
||||
if test doc/arm/Bv9ARM-book.xml -nt doc/arm/Bv9ARM.html
|
||||
ok=
|
||||
for f in doc/arm/*.html
|
||||
do
|
||||
if test "$f" -nt doc/arm/Bv9ARM-book.xml
|
||||
then
|
||||
ok=ok
|
||||
fi
|
||||
done
|
||||
|
||||
if test "$ok" != ok
|
||||
then
|
||||
echo "WARNING: ARM source is newer than the html version."
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue