From: Eric Engestrom Date: Tue, 30 Aug 2016 20:16:25 +0000 (+0100) Subject: get_reviewer.pl: fix mesa check X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=352f0d9180b7157465829fb49560448cfa3953af;p=mesa.git get_reviewer.pl: fix mesa check This script was broken for the last few days and I couldn't figure out why. Turns out it was checking for the existence of a file that got renamed, so rename it in here too. Fixes: f926cf5bd0ade3273b32 ("docs: Rename GL3.txt to features.txt") CC: Ian Romanick CC: Rob Clark Signed-off-by: Eric Engestrom Signed-off-by: Rob Clark --- diff --git a/scripts/get_reviewer.pl b/scripts/get_reviewer.pl index b08d1860ce3..62deb922800 100755 --- a/scripts/get_reviewer.pl +++ b/scripts/get_reviewer.pl @@ -865,7 +865,7 @@ sub top_of_mesa_tree { $lk_path .= "/"; } if ( (-f "${lk_path}docs/mesa.css") - && (-f "${lk_path}docs/GL3.txt") + && (-f "${lk_path}docs/features.txt") && (-f "${lk_path}src/mesa/main/version.c") && (-f "${lk_path}REVIEWERS") && (-d "${lk_path}scripts")) {