diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 18:14:46 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 18:14:46 +0000 |
commit | a9243f2c4e5cecfc0564f7951de92fd267510408 (patch) | |
tree | 22ede0f344ef7601f8607f3dd388557914ee2fe2 | |
parent | 393f1b414746a7f1977971dd7659dd2b47092b11 (diff) | |
download | libbu++-a9243f2c4e5cecfc0564f7951de92fd267510408.tar.gz libbu++-a9243f2c4e5cecfc0564f7951de92fd267510408.tar.bz2 libbu++-a9243f2c4e5cecfc0564f7951de92fd267510408.tar.xz libbu++-a9243f2c4e5cecfc0564f7951de92fd267510408.zip |
Fixed, it changes all of them on each line now.
Diffstat (limited to '')
-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 |