#!/bin/sh # # This is the fallback table for when we use the docs-xml build # system. When build as part of the main waf build, these are set to # the full correct path for the system. # echo " ]>" DIR=. if [ "x$1" != "x" ] then DIR="$1" fi OLD=`pwd` cd $DIR echo "
" for I in `find . -mindepth 2 -type f -name '*.xml' | sort -t/ -k3 | xargs` do cat $I done echo "
" cd $OLD