diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2013-11-25 07:06:23 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2013-11-25 07:06:23 +0000 |
commit | 8a54ea6aaf83435ef7224ebfc360ca29293e5f76 (patch) | |
tree | 0bce30108e2df03c6e9fc283e0082ac1094ead4c | |
parent | Add missing header. (diff) | |
download | gentoo-2-8a54ea6aaf83435ef7224ebfc360ca29293e5f76.tar.gz gentoo-2-8a54ea6aaf83435ef7224ebfc360ca29293e5f76.tar.bz2 gentoo-2-8a54ea6aaf83435ef7224ebfc360ca29293e5f76.zip |
Extended symlink fix back to 4.4 (see bug #363839).
-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 |