diff options
author | George Shapovalov <george@gentoo.org> | 2008-02-13 20:12:17 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2008-02-13 20:12:17 +0000 |
commit | 2fe6d6ccc1d52ce6e071c1363ccf4ff7dfa7251c (patch) | |
tree | 8789802ee1ad3351ebb3507aa19296abd4cc2009 /eclass/gnat.eclass | |
parent | Bumped to latest release. Introduced new java5/java6 use flags to control jdk... (diff) | |
download | historical-2fe6d6ccc1d52ce6e071c1363ccf4ff7dfa7251c.tar.gz historical-2fe6d6ccc1d52ce6e071c1363ccf4ff7dfa7251c.tar.bz2 historical-2fe6d6ccc1d52ce6e071c1363ccf4ff7dfa7251c.zip |
fixed quoting
Diffstat (limited to 'eclass/gnat.eclass')
-rw-r--r-- | eclass/gnat.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/gnat.eclass b/eclass/gnat.eclass index 2ffaa4645716..9dbd43953695 100644 --- a/eclass/gnat.eclass +++ b/eclass/gnat.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.33 2008/01/06 19:30:24 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.34 2008/02/13 20:09:27 george Exp $ # # Author: George Shapovalov <george@gentoo.org> # Belongs to: ada herd <ada@gentoo.org> @@ -423,10 +423,10 @@ gnat_src_install() { cp -dpR "${DLbin}-${compilers[${i}]}" "${D}/${DLlocation}"/bin cp -dpR "${DLgpr}-${compilers[${i}]}" "${D}/${DLlocation}"/gpr # create profile-specific specs file - cp ${LibEnv} ${D}/${SPECSDIR}/${PN}/${compilers[${i}]} - sed -i -e "s:%DL%:${DLlocation}/${PN}:g" ${D}/${SPECSDIR}/${PN}/${compilers[${i}]} - sed -i -e "s:%DLbin%:${DLlocation}/bin:g" ${D}/${SPECSDIR}/${PN}/${compilers[${i}]} - sed -i -e "s:%DLgpr%:${DLlocation}/gpr:g" ${D}/${SPECSDIR}/${PN}/${compilers[${i}]} + cp ${LibEnv} "${D}/${SPECSDIR}/${PN}/${compilers[${i}]}" + sed -i -e "s:%DL%:${DLlocation}/${PN}:g" "${D}/${SPECSDIR}/${PN}/${compilers[${i}]}" + sed -i -e "s:%DLbin%:${DLlocation}/bin:g" "${D}/${SPECSDIR}/${PN}/${compilers[${i}]}" + sed -i -e "s:%DLgpr%:${DLlocation}/gpr:g" "${D}/${SPECSDIR}/${PN}/${compilers[${i}]}" else einfo "skipping gnat profile ${compilers[${i}]}" fi |