aboutsummaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-01-20 18:14:46 +0000
committerMike Buland <eichlan@xagasoft.com>2011-01-20 18:14:46 +0000
commita9243f2c4e5cecfc0564f7951de92fd267510408 (patch)
tree22ede0f344ef7601f8607f3dd388557914ee2fe2 /support
parent393f1b414746a7f1977971dd7659dd2b47092b11 (diff)
downloadlibbu++-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 'support')
-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