Commit 801fe0bb by Benjamin Kosnik Committed by Benjamin Kosnik

run_doxygen: Fix sed quoting.

2011-11-04  Benjamin Kosnik  <bkoz@redhat.com>

	* scripts/run_doxygen: Fix sed quoting.

From-SVN: r180978
parent 9a7f7422
2011-11-04 Benjamin Kosnik <bkoz@redhat.com>
* scripts/run_doxygen: Fix sed quoting.
2011-11-03 Benjamin Kosnik <bkoz@redhat.com> 2011-11-03 Benjamin Kosnik <bkoz@redhat.com>
* doc/doxygen/doxygroups.cc: Add markup for namespace tr2. * doc/doxygen/doxygroups.cc: Add markup for namespace tr2.
......
...@@ -261,7 +261,7 @@ for f in $problematic; do ...@@ -261,7 +261,7 @@ for f in $problematic; do
# this is also slow, but safe and easy to debug # this is also slow, but safe and easy to debug
oldh=`sed -n '/fC#include </s/.*<\(.*\)>.*/\1/p' $f` oldh=`sed -n '/fC#include </s/.*<\(.*\)>.*/\1/p' $f`
newh=`echo $oldh | ./stdheader` newh=`echo $oldh | ./stdheader`
sed "s=${oldh}=${newh}=" $f > TEMP sed 's=${oldh}=${newh}=' $f > TEMP
mv TEMP $f mv TEMP $f
done done
rm stdheader rm stdheader
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment