shutils/metadata: fix incorrect syntax in subst $replaces values.

--HG--
extra : convert_revision : f57eaffc05e99b021aeb77c213b8ca13121b978e
This commit is contained in:
Juan RP 2010-01-20 15:10:23 +01:00
parent 95cb48502a
commit 740ed4e896
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ _EOF
echo "<key>replaces</key>" >> $TMPFPROPS
echo "<array>" >> $TMPFPROPS
for f in ${replaces}; do
echo "<string>$f</string>" >> $TMPFPROPS
echo "<string>$(echo $f|sed "s|<|\&lt;|g;s|>|\&gt;|g")</string>" >> $TMPFPROPS
done
echo "</array>" >> $TMPFPROPS
fi