| Submitter | Benjamin Kosnik |
|---|---|
| Date | Nov. 4, 2011, 7:41 p.m. |
| Message ID | <20111104124132.5cd970be@shotwell> |
| Download | mbox | patch |
| Permalink | /patch/123696/ |
| State | New |
| Headers | show |
Comments
Patch
2011-11-04 Benjamin Kosnik <bkoz@redhat.com> * scripts/run_doxygen: Fix sed quoting. diff --git a/libstdc++-v3/scripts/run_doxygen b/libstdc++-v3/scripts/run_doxygen index 3fef95f..7b601bc 100644 --- a/libstdc++-v3/scripts/run_doxygen +++ b/libstdc++-v3/scripts/run_doxygen @@ -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