aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsupport/fixstrings.sh10
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
8for i in $(find . -iname '*.cpp' -o -iname '*.h' -o -iname '*.unit' -o -iname '*.doxy'); do 8for 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.
17done 17done