diff options
author | 2023-09-29 15:23:24 +0200 | |
---|---|---|
committer | 2023-09-29 15:23:24 +0200 | |
commit | 2adb9b1822170a276938cf337210c3e76b26cce4 (patch) | |
tree | bc46d6ab58b3d59dceb87ca0e1d3282ede98ffca /gui-libs/xdg-desktop-portal-hyprland | |
parent | gui-libs/xdg-desktop-portal-hyprland: improve compiler check (diff) | |
download | guru-2adb9b1822170a276938cf337210c3e76b26cce4.tar.gz guru-2adb9b1822170a276938cf337210c3e76b26cce4.tar.bz2 guru-2adb9b1822170a276938cf337210c3e76b26cce4.zip |
gui-libs/xdg-desktop-portal-hyprland: fix compiler check
Signed-off-by: Remigiusz Micielski <rmicielski@purelymail.com>
Diffstat (limited to 'gui-libs/xdg-desktop-portal-hyprland')
-rw-r--r-- | gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.1.0.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.1.0.ebuild b/gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.1.0.ebuild index 214ef6c28..a04e503d5 100644 --- a/gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.1.0.ebuild +++ b/gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.1.0.ebuild @@ -55,7 +55,7 @@ BDEPEND=" pkg_setup() { [[ ${MERGE_TYPE} == binary ]] && return - if tc-is-gcc && ver_test $(gcc-version) -lt 11 ; then + if tc-is-gcc && ver_test $(gcc-version) -lt 13 ; then eerror "XDPH needs >=gcc-13 to compile." eerror "Please upgrade GCC: emerge -v1 sys-devel/gcc" die "GCC version is too old to compile XDPH!" |