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

message
This commit is contained in:
Denis Vlasenko 2008-08-31 21:29:35 +00:00
parent 66496d75a7
commit 1045d00462

View File

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