diff options
author | Eric Engestrom <eric@engestrom.ch> | 2016-08-30 21:16:25 +0100 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2016-08-30 16:44:00 -0400 |
commit | 352f0d9180b7157465829fb49560448cfa3953af (patch) | |
tree | 904fa895ff74dc3ffaaa138f54164dfaa235988f /scripts | |
parent | 66994036517d2cfe4882fc6bf6a6b32649dda5b1 (diff) |
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 <ian.d.romanick@intel.com>
CC: Rob Clark <robclark@freedesktop.org>
Signed-off-by: Eric Engestrom <eric@engestrom.ch>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get_reviewer.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/get_reviewer.pl b/scripts/get_reviewer.pl index b08d1860ce..62deb92280 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")) { |