diff options
author | Denis Vlasenko | 2008-08-31 21:29:35 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-08-31 21:29:35 +0000 |
commit | 1045d004628d401bc775200586f9a22d86fd0f06 (patch) | |
tree | 066968ef2edb7ef1c400bec3cb73d7559949a7fe | |
parent | 66496d75a7bf117ac5386c0498b950e47750923a (diff) | |
download | busybox-1045d004628d401bc775200586f9a22d86fd0f06.zip busybox-1045d004628d401bc775200586f9a22d86fd0f06.tar.gz |
build system: fix "Possible unintended interpolation of @host"
message
-rwxr-xr-x | docs/autodocifier.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl index 68b6f3c..78950dc 100755 --- a/docs/autodocifier.pl +++ b/docs/autodocifier.pl @@ -36,6 +36,7 @@ sub beautify { s/"\s*$//; s/%/%%/g; s/\$/\\\$/g; + s/\@/\\\@/g; eval qq[ sprintf(qq{$_}) ] } @line ); |