mesa-o-matic: Fix bug exposed by new Mesa build
* While we want to exclude include/GL (because we get the whole directory) we also exclude include/GLES2 which gets picked up in newer Mesa code * Add a slash on the end of the grep to make sure we omit *just* include/GL
This commit is contained in:
parent
7c8e561489
commit
7c5d8dd2a8
2
3rdparty/mesa/mesa-o-matic.sh
vendored
2
3rdparty/mesa/mesa-o-matic.sh
vendored
@ -81,7 +81,7 @@ do
|
||||
|
||||
for y in $( echo "$HEADERS_RAW" | cut -d':' -f2 | sed 's/\\//g' | tr -d '\n' )
|
||||
do
|
||||
CLEAN_HEADER=$( echo "$y" | grep -v "include/GL" )
|
||||
CLEAN_HEADER=$( echo "$y" | grep -v "include/GL/" )
|
||||
ZIP_HEADERS="$ZIP_HEADERS $CLEAN_HEADER"
|
||||
done
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user