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/gnatbuild.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/gnatbuild.eclass')
-rw-r--r-- | eclass/gnatbuild.eclass | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/eclass/gnatbuild.eclass b/eclass/gnatbuild.eclass index 3f5afb9f0f71..b8df9a79b0bb 100644 --- a/eclass/gnatbuild.eclass +++ b/eclass/gnatbuild.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.36 2008/02/11 15:12:31 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.37 2008/02/13 20:12:17 george Exp $ # # Author: George Shapovalov <george@gentoo.org> # Belongs to: ada herd <ada@gentoo.org> @@ -317,7 +317,7 @@ gnatbuild_src_unpack() { unpack ${A} pax-mark E $(find ${GNATBOOT} -name gnat1) - cd ${S} + cd "${S}" # patching gcc sources, following the toolchain if [[ -d "${FILESDIR}"/${SLOT} ]] ; then EPATCH_MULTI_MSG="Applying Gentoo patches ..." \ @@ -346,7 +346,7 @@ gnatbuild_src_unpack() { done # regenerate some configures tp fix ACT's omissions - pushd ${S}/gnattools &> /dev/null + pushd "${S}"/gnattools &> /dev/null eautoconf popd &> /dev/null ;; @@ -364,7 +364,7 @@ gnatbuild_src_unpack() { # add -fPIC flag to shared libs for 3.4* backend if [ "3.4" == "${GCCBRANCH}" ] ; then cd ada - epatch ${FILESDIR}/gnat-Make-lang.in.patch + epatch "${FILESDIR}"/gnat-Make-lang.in.patch fi mkdir -p "${GNATBUILD}" @@ -476,10 +476,10 @@ gnatbuild_src_compile() { debug-print-section make-tools # Compile helper tools cd "${GNATBOOT}" - cp ${S}/gcc/ada/xtreeprs.adb . - cp ${S}/gcc/ada/xsinfo.adb . - cp ${S}/gcc/ada/xeinfo.adb . - cp ${S}/gcc/ada/xnmake.adb . + cp "${S}"/gcc/ada/xtreeprs.adb . + cp "${S}"/gcc/ada/xsinfo.adb . + cp "${S}"/gcc/ada/xeinfo.adb . + cp "${S}"/gcc/ada/xnmake.adb . gnatmake xtreeprs && \ gnatmake xsinfo && \ gnatmake xeinfo && \ @@ -562,7 +562,7 @@ gnatbuild_src_install() { cd "${GNATBUILD}" - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die #make a convenience info link dosym ${DATAPATH}/info/gnat_ugn_unw.info ${DATAPATH}/info/gnat.info |