Skip to content

Commit

Permalink
gui-wm/hikari: fix suid flag usage
Browse files Browse the repository at this point in the history
was changed from WITH_SUID to WITHOUT_SUID

Closes: https://bugs.gentoo.org/758968

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Aisha Tammy <[email protected]>
Closes: gentoo#18564
Signed-off-by: Aaron Bauman <[email protected]>
  • Loading branch information
epsilon-0 authored and FuzzyGophers committed Dec 16, 2020
1 parent d631005 commit b5b7e31
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ pkg_setup() {
}

src_compile() {

${MAKE} -j$(makeopts_jobs) VERSION="{PV}" \
CC="$(tc-getCC)" \
CFLAGS_EXTRA="${CFLAGS}" \
Expand All @@ -54,13 +53,14 @@ src_compile() {
$(usex gamma -DWITH_GAMMACONTROL "") \
$(usex layershell -DWITH_LAYERSHELL "") \
$(usex screencopy -DWITH_SCREENCOPY "") \
$(usex suid -DWITH_SUID "") \
$(usex virtual-io -DWITH_VIRTUAL_INPUT "") \
$(usex X -DWITH_XWAYLAND "") \
all || die
}

src_install() {
${MAKE} DESTDIR="${D}" PREFIX=/usr ETC_PREFIX=/ install || die
${MAKE} DESTDIR="${D}" PREFIX=/usr ETC_PREFIX=/ \
$(usex suid "" -DWITHOUT_SUID) \
install || die
doman share/man/man1/hikari.1
}

0 comments on commit b5b7e31

Please sign in to comment.