Module: tools Branch: master Commit: 9b6f984c681205922a3df13ee3b25c68ca4a01f0 URL: https://source.winehq.org/git/tools.git/?a=commit;h=9b6f984c681205922a3df13e... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Thu Apr 19 03:31:36 2018 +0200 testbot/build: Escape dots in regular expressions. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- testbot/bin/build/Build.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testbot/bin/build/Build.pl b/testbot/bin/build/Build.pl index 96cf741..80aeb4c 100755 --- a/testbot/bin/build/Build.pl +++ b/testbot/bin/build/Build.pl @@ -118,7 +118,7 @@ sub ApplyPatch($$$) { $NeedMakeMakefiles = $NeedConfigure = 1; } - elsif ($Line =~ m=^diff.*tools/makedep.c=) + elsif ($Line =~ m=^diff.*tools/makedep\.c=) { $NeedBuildNative = $NeedMakeMakefiles = $NeedConfigure = 1; }