From 60571ed2f00b07a8a7755acf9170368deb9b02df Mon Sep 17 00:00:00 2001 From: Leah Rowe <leah@libreboot.org> Date: Fri, 20 Oct 2023 05:58:47 +0100 Subject: [PATCH] fix tabs in docs/build the last patch submitted used four spaces, but lbwww requires a tab (or 8 spaces), because it correctly treats tabs as 8 spaces (and tells pandoc to do this in the Untitled Static Site Generator) Signed-off-by: Leah Rowe <leah@libreboot.org> --- site/docs/build/index.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/site/docs/build/index.md b/site/docs/build/index.md index 139b853..d1c163c 100644 --- a/site/docs/build/index.md +++ b/site/docs/build/index.md @@ -70,11 +70,11 @@ Python2 is unused by lbmk or anything that it pulls down as modules. If building on Debian/Ubuntu based systems, you can achieve that via: - sudo apt install python-is-python3 + sudo apt install python-is-python3 On Fedora, you can use the following - sudo dnf install python-unversioned-command + sudo dnf install python-unversioned-command Building Libreboot ================== @@ -88,26 +88,26 @@ according to the selected linux distro. The currently supported distros are: Debian/Ubuntu/Linux Mint/Pop!\_OS, Fedora, Arch Linux/Parabola or Void Linux. -Some examples: +Some examples (run them as root, use use e.g. `sudo`, `doas`): - sudo ./build dependencies ubuntu + ./build dependencies ubuntu or - sudo ./build dependencies debian + ./build dependencies debian or - sudo ./build dependencies fedora38 + ./build dependencies fedora38 or - sudo ./build dependencies arch + ./build dependencies arch NOTE: In case of Ubuntu 20.04 LTS or derived distros for that specific release, - use the dedicated configuration file: +use the dedicated configuration file: - sudo ./build dependencies ubuntu2004 + ./build dependencies ubuntu2004 Check: `config/dependencies/` for list of supported distros. -- GitLab