build system: fix "Possible unintended interpolation of @host"

message
1_13_stable
Denis Vlasenko 2008-08-31 21:29:35 +00:00
parent 66496d75a7
commit 1045d00462
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ sub beautify {
s/"\s*$//;
s/%/%%/g;
s/\$/\\\$/g;
s/\@/\\\@/g;
eval qq[ sprintf(qq{$_}) ]
} @line
);