OSDN Git Service

2011-11-04 Benjamin Kosnik <bkoz@redhat.com>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 4 Nov 2011 19:39:23 +0000 (19:39 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 4 Nov 2011 19:39:23 +0000 (19:39 +0000)
* scripts/run_doxygen: Fix sed quoting.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@180978 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/scripts/run_doxygen

index c282177..470c0c1 100644 (file)
@@ -1,3 +1,7 @@
+2011-11-04  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * scripts/run_doxygen: Fix sed quoting.
+
 2011-11-03  Benjamin Kosnik  <bkoz@redhat.com>
 
        * doc/doxygen/doxygroups.cc: Add markup for namespace tr2.
index 3fef95f..7b601bc 100644 (file)
@@ -261,7 +261,7 @@ for f in $problematic; do
     # this is also slow, but safe and easy to debug
     oldh=`sed -n '/fC#include </s/.*<\(.*\)>.*/\1/p' $f`
     newh=`echo $oldh | ./stdheader`
-    sed "s=${oldh}=${newh}=" $f > TEMP
+    sed 's=${oldh}=${newh}=' $f > TEMP
     mv TEMP $f
 done
 rm stdheader