diff options
author | 2013-11-25 07:06:23 +0000 | |
---|---|---|
committer | 2013-11-25 07:06:23 +0000 | |
commit | d28c579e03966279e3601c0514f1f80e48969d3c (patch) | |
tree | 4a7c58f722b95ee69c24025aa5c73639328a2d69 /eclass | |
parent | Add missing header. (diff) | |
download | historical-d28c579e03966279e3601c0514f1f80e48969d3c.tar.gz historical-d28c579e03966279e3601c0514f1f80e48969d3c.tar.bz2 historical-d28c579e03966279e3601c0514f1f80e48969d3c.zip |
Extended symlink fix back to 4.4 (see bug #363839).
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/gnatbuild.eclass | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 7bc3b83d4c87..1bd06dbefcbe 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1069 2013/11/25 03:11:57 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1070 2013/11/25 07:06:23 nerdboy Exp $ + + 25 Nov 2013; Steve Arnold <nerdboy@gentoo.org> gnatbuild.eclass: + Symlink fix should be good back to 4.4 (see bug #363839). 25 Nov 2013; Ryan Hill <dirtyepic@gentoo.org> toolchain.eclass: Prevent comparison failures due to -frecord-gcc-switches (bug #490738). diff --git a/eclass/gnatbuild.eclass b/eclass/gnatbuild.eclass index 6a231a67d796..64d708291665 100644 --- a/eclass/gnatbuild.eclass +++ b/eclass/gnatbuild.eclass @@ -1,8 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.59 2013/11/25 02:49:47 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.60 2013/11/25 07:06:23 nerdboy Exp $ +# +# Authors: George Shapovalov <george@gentoo.org> +# Steve Arnold <nerdboy@gentoo.org> # -# Author: George Shapovalov <george@gentoo.org> # Belongs to: ada herd <ada@gentoo.org> # # Notes: @@ -690,7 +692,7 @@ gnatbuild_src_install() { make DESTDIR="${D}" install || die if use doc ; then - if (( $(bc <<< "${GNATBRANCH} > 4.5") )) ; then + if (( $(bc <<< "${GNATBRANCH} > 4.3") )) ; then #make a convenience info link elog "Yay! Math is good." dosym gnat_ugn.info ${DATAPATH}/info/gnat.info |