Chose a substitution character for sed less likely to conflict

This commit is contained in:
Pierre Pronchery 2012-08-13 18:27:16 +00:00
parent 40b2ecce67
commit d1970004bb

View File

@ -108,9 +108,9 @@ while [ $# -gt 0 ]; do
esac
#create
$DEBUG $SED -e "s:@PREFIX@:$PREFIX:" \
-e "s:@VERSION@:$VERSION:" \
-e "s:@RPATH@:$RPATH:" -- "$target.in" > "$target"
$DEBUG $SED -e "s;@PREFIX@;$PREFIX;" \
-e "s;@VERSION@;$VERSION;" \
-e "s;@RPATH@;$RPATH;" -- "$target.in" > "$target"
if [ $? -ne 0 ]; then
$DEBUG $RM -- "$target"
exit 2