From 0536d67e3b609a541ffdce7ea06480b54cda6073 Mon Sep 17 00:00:00 2001 From: lat9nq Date: Tue, 18 Aug 2020 22:46:57 -0400 Subject: [PATCH] Correct `Ignore` to `IgnorePkg` --- Building-Mesa-on-Arch-Linux.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Building-Mesa-on-Arch-Linux.md b/Building-Mesa-on-Arch-Linux.md index 5d17d1a..43d8963 100644 --- a/Building-Mesa-on-Arch-Linux.md +++ b/Building-Mesa-on-Arch-Linux.md @@ -97,11 +97,11 @@ MESA_WHICH_LLVM=3 makepkg -si ### Optional: Prevent `pacman` From Updating `mesa-git` Automatically Though `mesa-git` is now installed, running `sudo pacman -Syu` right now will overwrite the package with one from a repository (likely `mesa-aco-git` from Chaotic-AUR). To prevent this, `pacman` needs to ignore that package for updates. Edit the `IgnorePkg` line in `/etc/pacman.conf`: ``` -#Ignore = +#IgnorePkg = ``` Add `mesa-git` to this list and remove the comment marker `#` if need be: ``` -Ignore = mesa-git +IgnorePkg = mesa-git ``` Use commas to separate multiple package names if other packages are already listed there.