diff options
| author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-11 19:35:49 +0000 |
|---|---|---|
| committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-11 19:35:49 +0000 |
| commit | cc8c99d6610f5c5c1a206ea05b6cae90f28b3ccc (patch) | |
| tree | b6c312cb36e69c0b3262c4a293e9e8e6c03ab7ce /libstdc++-v3/docs/doxygen/run_doxygen | |
| parent | 36e491ed6b39cb61b751cdb8be4682a792de635f (diff) | |
| download | ppe42-gcc-cc8c99d6610f5c5c1a206ea05b6cae90f28b3ccc.tar.gz ppe42-gcc-cc8c99d6610f5c5c1a206ea05b6cae90f28b3ccc.zip | |
2001-07-11 Phil Edwards <pme@sources.redhat.com>
* docs/doxygen/run_doxygen: Don't keep output from previous run.
* docs/doxygen/user.cfg.in: Tweaks.
* include/bits/c++config: Documentation comments for Doxygen.
* include/bits/char_traits.h: Likewise.
* include/bits/limits_generic.h: Likewise.
* include/bits/std_stdexcept.h: Likewise.
* include/bits/stl_pair.h: Likewise.
* libsupc++/exception: Likewise.
* libsupc++/new: Likewise.
* libsupc++/typeinfo: Likewise.
* libmath/Makefile.am: Update and correct copyright.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43948 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/docs/doxygen/run_doxygen')
| -rw-r--r-- | libstdc++-v3/docs/doxygen/run_doxygen | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libstdc++-v3/docs/doxygen/run_doxygen b/libstdc++-v3/docs/doxygen/run_doxygen index b329a1304d2..8af7be37c76 100644 --- a/libstdc++-v3/docs/doxygen/run_doxygen +++ b/libstdc++-v3/docs/doxygen/run_doxygen @@ -5,7 +5,7 @@ # Synopsis: run_doxygen --mode=[user|maint] v3srcdir v3builddir # # Originally hacked together by Phil Edwards <pme@sources.redhat.com> -# $Id: run_doxygen,v 1.4 2001/04/29 01:40:34 pme Exp $ +# $Id: run_doxygen,v 1.5 2001/06/11 13:04:07 pme Exp $ # We can check now that the version of doxygen is >= this variable. @@ -75,7 +75,7 @@ parse_options() { blank= Id=is echo You expect this dinky script to track a version? Okay, here - echo it $Id: run_doxygen,v 1.4 2001/04/29 01:40:34 pme Exp $blank + echo it $Id: run_doxygen,v 1.5 2001/06/11 13:04:07 pme Exp $blank exit 0 ;; *) @@ -115,7 +115,9 @@ case x"$mode" in exit 1 ;; esac -test -d $outdir || (mkdir -p $outdir ; chmod u+w $outdir) +rm -rf $outdir +mkdir -p $outdir +chmod u+w $outdir ( set -e cd $srcdir |

