summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2008-02-13 20:09:27 +0000
committerGeorge Shapovalov <george@gentoo.org>2008-02-13 20:09:27 +0000
commit5e1c1b77acabf55d9770986a218e21f13ccbccce (patch)
tree0bcb45a29c944b113f991ef19d8ab2840e52b90b /eclass/gnat.eclass
parentVersion bump, #155734 (diff)
downloadgentoo-2-5e1c1b77acabf55d9770986a218e21f13ccbccce.tar.gz
gentoo-2-5e1c1b77acabf55d9770986a218e21f13ccbccce.tar.bz2
gentoo-2-5e1c1b77acabf55d9770986a218e21f13ccbccce.zip
fixed quoting
Diffstat (limited to 'eclass/gnat.eclass')
-rw-r--r--eclass/gnat.eclass10
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