diff options
| -rwxr-xr-x | support/fixstrings.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/support/fixstrings.sh b/support/fixstrings.sh index d7de847..c72d7a4 100755 --- a/support/fixstrings.sh +++ b/support/fixstrings.sh | |||
| @@ -8,10 +8,10 @@ read | |||
| 8 | for i in $(find . -iname '*.cpp' -o -iname '*.h' -o -iname '*.unit' -o -iname '*.doxy'); do | 8 | for i in $(find . -iname '*.cpp' -o -iname '*.h' -o -iname '*.unit' -o -iname '*.doxy'); do |
| 9 | echo -n $i... | 9 | echo -n $i... |
| 10 | sed -i $i \ | 10 | sed -i $i \ |
| 11 | -e 's@"fstring.h@"bu/string.h@' \ | 11 | -e 's@"fstring.h@"bu/string.h@g' \ |
| 12 | -e 's@"bu/fstring.h@"bu/string.h@' \ | 12 | -e 's@"bu/fstring.h@"bu/string.h@g' \ |
| 13 | -e 's@<fstring.h@<bu/string.h@' \ | 13 | -e 's@<fstring.h@<bu/string.h@g' \ |
| 14 | -e 's@<bu/fstring.h@<bu/string.h@' \ | 14 | -e 's@<bu/fstring.h@<bu/string.h@g' \ |
| 15 | -e 's@FString@String@' | 15 | -e 's@FString@String@g' |
| 16 | echo done. | 16 | echo done. |
| 17 | done | 17 | done |
