~ubuntu-branches/ubuntu/dapper/speex/dapper-security

« back to all changes in this revision

Viewing changes to debian/doxydot.sh

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2005-12-07 23:22:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051207232221-nme7vf9m182p7dpe
Tags: 1.1.11.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
# Script to avoid needing Build-Indep-Depends upon graphviz
3
 
# (But will use it if available anyways, since after all, the
4
 
#  output is not the non-free part of graphviz.)
5
 
set -e
6
 
cd debian
7
 
if [ -x /usr/bin/dot ]; then
8
 
    ln -s doxyfile.dot doxyfile
9
 
else
10
 
    ln -s doxyfile.plain doxyfile
11
 
fi
12
 
cd ..