Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / ACE / debian / fix_doxygen.sh
blob00107e3fab5b6622f21e1540665b7af4c1b46233
1 #!/bin/sh
3 # This script regenerates changes on the Doxygen templates.
5 silent_nothing_to_do() {
6 test $? -eq 2 || false
9 set -e
10 export QUILT_PATCHES=debian/patches
12 quilt pop -a || silent_nothing_to_do
13 quilt delete reduce-doxygen-doc.diff
14 quilt new reduce-doxygen-doc.diff
16 for f in $(find $ACE_ROOT -name '*.doxygen')
18 QUILT_PATCHES=debian/patches quilt add $f
19 sed -e 's#COLLABORATION_GRAPH = YES#COLLABORATION_GRAPH = NO#' \
20 -e 's#SEARCHENGINE = YES#SEARCHENGINE = NO#' \
21 -e 's#DOT_GRAPH_MAX_NODES = 50#DOT_GRAPH_MAX_NODES = 15#' \
22 < $f > $f.new
24 mv $f.new $f
25 done
27 quilt refresh --no-timestamps --no-index