diff options
author | Emma Anholt <emma@anholt.net> | 2022-06-01 16:33:57 -0700 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2022-06-09 22:53:37 +0000 |
commit | 2aeb83117ad7264b71cd4980187b29031a59953f (patch) | |
tree | 7f8d2703660c1e7b1cdf28171986bd3ad5042213 /.gitignore | |
parent | d2677cb6d78939d1a51e6d51df48bae606f10785 (diff) | |
download | mesa-2aeb83117ad7264b71cd4980187b29031a59953f.tar.gz mesa-2aeb83117ad7264b71cd4980187b29031a59953f.tar.bz2 mesa-2aeb83117ad7264b71cd4980187b29031a59953f.zip |
.gitignore: Qualify the path for the ignored build directory.
This was origally added for scons, which is gone, but keep it around since
enough people use "build" for their meson builds that you probably
shouldn't add anything to git under that name. The qualifying '/' is
needed because we have a .gitlab-ci/build/ directory where we do check in
code.
Reviewed-by: Marcin Ĺšlusarz <marcin.slusarz@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16827>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 825ad5fd165..9b156306415 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ *.pyc *.pyo *.out -build +/build |