mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-20 16:02:05 +02:00
Fixed long file names
[SVN r11933]
This commit is contained in:
25
doc/doxygen_reference.bash
Executable file
25
doc/doxygen_reference.bash
Executable file
@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Copyright (C) 2001
|
||||
# Housemarque Oy
|
||||
# http://www.housemarque.com
|
||||
#
|
||||
# Permission to copy, use, modify, sell and distribute this software is
|
||||
# granted provided this copyright notice appears in all copies. This
|
||||
# software is provided "as is" without express or implied warranty, and
|
||||
# with no claim as to its suitability for any purpose.
|
||||
|
||||
rm -f reference/*.html reference/*.htm
|
||||
doxygen doxygen_reference.dox
|
||||
rm reference/doxygen.css reference/doxygen.gif
|
||||
|
||||
cd reference
|
||||
|
||||
for html in *.html
|
||||
do
|
||||
sed -e 's/enum__params__with__a__default_8hpp.html/enum_params_with_a_default.htm/g' -e 's/enum__params__with__defaults_8hpp.html/enum_params_with_defaults.htm/g' $html > $html.tmp
|
||||
mv $html.tmp $html
|
||||
done
|
||||
|
||||
mv enum__params__with__a__default_8hpp.html enum_params_with_a_default.htm
|
||||
mv enum__params__with__defaults_8hpp.html enum_params_with_defaults.htm
|
Reference in New Issue
Block a user