Forward port of release and build changes from 2.1

This commit is contained in:
Endre Sándor Varga 2013-05-14 11:50:23 +02:00
parent d0ed7385b2
commit fc67c061d4
4 changed files with 15 additions and 10 deletions

View file

@ -65,7 +65,7 @@ for file in $files; do
# escape / for sed
sedfind=$(echo $find_expr | sed 's/\//\\\//g')
sedreplace=$(echo $replace_expr | sed 's/\//\\\//g')
sed -i '.sed' "s/${sedfind}/${sedreplace}/g" $file
sed -i.sed "s/${sedfind}/${sedreplace}/g" $file
eval "$simple_diff $file.sed $file"
rm -f $file.sed
done