diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-01-15 18:57:57 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-01-15 18:58:15 +0100 |
commit | e6710a14b9aa2ea8a7b31ce22ac8a048bb165322 (patch) | |
tree | 6e12eef23360554492ee04813fbcfd897d4f51a9 /app-editors | |
parent | net-misc/memcached: 1.6.13 bump (diff) | |
download | gentoo-e6710a14b9aa2ea8a7b31ce22ac8a048bb165322.tar.gz gentoo-e6710a14b9aa2ea8a7b31ce22ac8a048bb165322.tar.bz2 gentoo-e6710a14b9aa2ea8a7b31ce22ac8a048bb165322.zip |
app-editors/emacs: Fix pgtk conditional
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs/emacs-29.0.9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-editors/emacs/emacs-29.0.9999.ebuild b/app-editors/emacs/emacs-29.0.9999.ebuild index 69582b7f2ff4..52f966bf8a7d 100644 --- a/app-editors/emacs/emacs-29.0.9999.ebuild +++ b/app-editors/emacs/emacs-29.0.9999.ebuild @@ -228,7 +228,7 @@ src_configure() { einfo "Configuring to build with Nextstep (Macintosh Cocoa) support" myconf+=" --with-ns --disable-ns-self-contained" myconf+=" --without-x --without-pgtk" - elif use gtk || ! use X; then + elif use gtk && ! use X; then einfo "Configuring to build with pure GTK (without X11) support" myconf+=" --with-pgtk --without-x --without-ns" myconf+=" $(use_with gconf)" |