diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-12-28 00:11:50 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-12-28 00:11:50 +0000 |
commit | cf4c0caf1b5bff39f5a55399b44087b0b8190401 (patch) | |
tree | 62dc5f3bfb46dab6febde52661e17b18e170b80e /sys-auth/polkit | |
parent | Cleanup (diff) | |
download | gentoo-2-cf4c0caf1b5bff39f5a55399b44087b0b8190401.tar.gz gentoo-2-cf4c0caf1b5bff39f5a55399b44087b0b8190401.tar.bz2 gentoo-2-cf4c0caf1b5bff39f5a55399b44087b0b8190401.zip |
Fix ia64 where the order of the configure options was overridden by mips, thanks Arfrever
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'sys-auth/polkit')
-rw-r--r-- | sys-auth/polkit/ChangeLog | 6 | ||||
-rw-r--r-- | sys-auth/polkit/polkit-0.112-r1.ebuild | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-auth/polkit/ChangeLog b/sys-auth/polkit/ChangeLog index 46d6a40b21d5..a56d9553fc8b 100644 --- a/sys-auth/polkit/ChangeLog +++ b/sys-auth/polkit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-auth/polkit # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.162 2013/12/27 20:12:49 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.163 2013/12/28 00:11:50 blueness Exp $ + + 28 Dec 2013; Anthony G. Basile <blueness@gentoo.org> polkit-0.112-r1.ebuild: + Fix ia64 where the order of the configure options was overridden by mips, + thanks Arfrever 27 Dec 2013; Anthony G. Basile <blueness@gentoo.org> polkit-0.112-r1.ebuild: Because sometimes portage is stupid diff --git a/sys-auth/polkit/polkit-0.112-r1.ebuild b/sys-auth/polkit/polkit-0.112-r1.ebuild index e093449542fc..acfafca3ec38 100644 --- a/sys-auth/polkit/polkit-0.112-r1.ebuild +++ b/sys-auth/polkit/polkit-0.112-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.112-r1.ebuild,v 1.3 2013/12/27 20:12:49 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.112-r1.ebuild,v 1.4 2013/12/28 00:11:50 blueness Exp $ EAPI=5 inherit eutils multilib pam pax-utils systemd user @@ -68,8 +68,7 @@ src_configure() { $(use_enable introspection) \ --disable-examples \ $(use_enable nls) \ - $(usex ia64 --with-mozjs=mozjs185 --with-mozjs=mozjs-17.0) \ - $(usex mips --with-mozjs=mozjs185 --with-mozjs=mozjs-17.0) \ + $(if use ia64 || use mips; then echo --with-mozjs=mozjs185; else echo --with-mozjs=mozjs-17.0; fi) \ "$(systemd_with_unitdir)" \ --with-authfw=$(usex pam pam shadow) \ $(use pam && echo --with-pam-module-dir="$(getpam_mod_dir)") \ |