diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-04-18 16:55:20 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-04-18 16:55:20 +0000 |
commit | d9604ce7d78a7cb48e5bc0f3fedec1301d618d11 (patch) | |
tree | e209121952717d9e3fdba43721372cf535d14c23 /sys-apps/systemd | |
parent | Version bump. (diff) | |
download | gentoo-2-d9604ce7d78a7cb48e5bc0f3fedec1301d618d11.tar.gz gentoo-2-d9604ce7d78a7cb48e5bc0f3fedec1301d618d11.tar.bz2 gentoo-2-d9604ce7d78a7cb48e5bc0f3fedec1301d618d11.zip |
Fix mistyped gcc version number.
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 9627F456F9DA7643!)
Diffstat (limited to 'sys-apps/systemd')
-rw-r--r-- | sys-apps/systemd/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/systemd/systemd-201.ebuild | 6 | ||||
-rw-r--r-- | sys-apps/systemd/systemd-9999.ebuild | 6 |
3 files changed, 11 insertions, 7 deletions
diff --git a/sys-apps/systemd/ChangeLog b/sys-apps/systemd/ChangeLog index 708cff321bc1..c85a48ba14b9 100644 --- a/sys-apps/systemd/ChangeLog +++ b/sys-apps/systemd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/systemd # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v 1.125 2013/04/18 05:36:01 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v 1.126 2013/04/18 16:55:20 mgorny Exp $ + + 18 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild, + systemd-9999.ebuild: + Fix mistyped gcc version number. 18 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild, systemd-9999.ebuild: diff --git a/sys-apps/systemd/systemd-201.ebuild b/sys-apps/systemd/systemd-201.ebuild index 4c6071b0240d..53f96f5e96de 100644 --- a/sys-apps/systemd/systemd-201.ebuild +++ b/sys-apps/systemd/systemd-201.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-apps/systemd/systemd-201.ebuild,v 1.11 2013/04/18 05:36:01 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-201.ebuild,v 1.12 2013/04/18 16:55:20 mgorny Exp $ EAPI=5 @@ -71,8 +71,8 @@ pkg_pretend() { ~SYSFS ~!IDE ~!SYSFS_DEPRECATED ~!SYSFS_DEPRECATED_V2" if [[ ${MERGE_TYPE} != binary ]]; then - if [[ $(gcc-major-version) -lt 3 - || ( $(gcc-major-version) -eq 3 && $(gcc-minor-version) -lt 6 ) ]] + if [[ $(gcc-major-version) -lt 4 + || ( $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 6 ) ]] then eerror "systemd requires at least gcc 4.6 to build. Please switch the active" eerror "gcc version using gcc-config." diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index 037738dbf36a..3a9f6a2a3f42 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-9999.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-apps/systemd/systemd-9999.ebuild,v 1.52 2013/04/18 05:36:01 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/systemd-9999.ebuild,v 1.53 2013/04/18 16:55:20 mgorny Exp $ EAPI=5 @@ -95,8 +95,8 @@ pkg_pretend() { ~SYSFS ~!IDE ~!SYSFS_DEPRECATED ~!SYSFS_DEPRECATED_V2" if [[ ${MERGE_TYPE} != binary ]]; then - if [[ $(gcc-major-version) -lt 3 - || ( $(gcc-major-version) -eq 3 && $(gcc-minor-version) -lt 6 ) ]] + if [[ $(gcc-major-version) -lt 4 + || ( $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 6 ) ]] then eerror "systemd requires at least gcc 4.6 to build. Please switch the active" eerror "gcc version using gcc-config." |