From abc5a31c15ddd4874614f3649159016afaccfe86 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Tue, 8 Jul 2025 11:05:16 -0400 Subject: [PATCH] install: fix bug in apt install target --- Makefile | 2 +- docs/installation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f3eeff98..f7a2b9f6 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ install_macos: install_brew install_pip install_apt: @echo "Installing Solaar dependencies via apt" sudo apt update - sudo apt install libdbus-1-dev libglib2.0-dev libgtk-3-dev libgirepository-1.0-dev + sudo apt install libdbus-1-dev libglib2.0-dev libgtk-3-dev libgirepository1.0-dev install_apt_python3.13: @echo "Installing Solaar dependencies via apt" diff --git a/docs/installation.md b/docs/installation.md index c5d2b107..7eb4aa10 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -42,8 +42,8 @@ or `make install_dnf` or `make install_brew`. These might not install all needed packages in older versions of your distribution. Next, install the Solaar rule via `make install_udev`. If you are using Wayland instead of X11 you may want to instead `make install_udev_uinput` -Finally, install Solaar via `make install_pip` or `make install_pipx`. so that Solaar rules can simulate input in Wayland. +Finally, install Solaar via `make install_pip` or `make install_pipx`. Parts of the installation process require sudo privileges so you may be asked for your password.