From c6b7652c6e5935e11899f2d9a71c24d2bcbc7ac0 Mon Sep 17 00:00:00 2001 From: jwihardi Date: Sat, 11 Oct 2025 20:38:13 -0400 Subject: [PATCH] added another warning and changed warning prints --- dist-gentoo/install-deps.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dist-gentoo/install-deps.sh b/dist-gentoo/install-deps.sh index f9318c0c5..3936214a7 100644 --- a/dist-gentoo/install-deps.sh +++ b/dist-gentoo/install-deps.sh @@ -1,11 +1,19 @@ printf "${STY_YELLOW}" -printf "============WARNING/NOTE============\n" +printf "============WARNING/NOTE (1)============\n" printf "GCC in use: $(which gcc)\n" printf "GCC version info: $(gcc --version | grep gcc)\n" printf "GCC version number: $(gcc --version | grep gcc | awk '{print $3}')\n" printf "GCC-15>= is required for Hyprland\n" printf "If you have GCC-15>= and it's currently set then you can safely ignore this\n" -printf "If not, you must ensure you are using the correct GCC version and set it (gcc-config ), then emerge re-emerge @world with an empty tree (emerge -e @world)\n" +printf "If not, you must ensure you are using the correct GCC version and set it (gcc-config )\n" +printf "It is heavily recommended to re-emerge @world with an empty tree after changing GCC version (emerge -e @world)\n\n" +printf "${STY_RESET}" +pause + +printf "${STY_YELLOW}" +printf "============WARNING/NOTE (2)============\n" +printf "Ensure you have a global use flag for elogind or systemd in your make.conf for simplicity\n" +printf "Or you can manually add the use flags for each package that requires it\n" printf "${STY_RESET}" pause