summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2012-08-23 10:57:55 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2012-08-23 10:57:55 +0000
commit330b9997d63d4880787362663f71ecb8171b3291 (patch)
treeef4c74c698fc66c3b4b91c3efe14dbd229b5362c /sys-devel
parentVersion bump. (diff)
downloadgentoo-2-330b9997d63d4880787362663f71ecb8171b3291.tar.gz
gentoo-2-330b9997d63d4880787362663f71ecb8171b3291.tar.bz2
gentoo-2-330b9997d63d4880787362663f71ecb8171b3291.zip
Update path to icecc-create-env wrt #399259, missed in previous commit
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/icecream/ChangeLog5
-rw-r--r--sys-devel/icecream/files/icecream-create-env6
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-devel/icecream/ChangeLog b/sys-devel/icecream/ChangeLog
index eb070e4615a4..5fc34cb9b1c5 100644
--- a/sys-devel/icecream/ChangeLog
+++ b/sys-devel/icecream/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/icecream
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/icecream/ChangeLog,v 1.43 2012/08/23 10:42:09 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/icecream/ChangeLog,v 1.44 2012/08/23 10:57:55 xarthisius Exp $
+
+ 23 Aug 2012; Kacper Kowalik <xarthisius@gentoo.org> files/icecream-create-env:
+ Update path to icecc-create-env wrt #399259, missed in previous commit
*icecream-0.9.7-r1 (23 Aug 2012)
diff --git a/sys-devel/icecream/files/icecream-create-env b/sys-devel/icecream/files/icecream-create-env
index 4ee85f9cfede..dafdc13b4331 100644
--- a/sys-devel/icecream/files/icecream-create-env
+++ b/sys-devel/icecream/files/icecream-create-env
@@ -2,7 +2,7 @@
#
# icecream-create-env - helper script to create icecc environments(mostly for cross-compiling)
#
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
# Please note, this script has been designed to work with Gentoo's crossdev, it may or may
@@ -50,12 +50,12 @@ tmpfile=`mktemp`
target=`gcc -dumpmachine`
if [ "x${target}" = "x${prefix}" ]
then
- /usr/lib/icecc/icecc-create-env \
+ /usr/libexec/icecc/icecc-create-env \
/usr/${prefix}/gcc-bin/${version}/gcc \
/usr/${prefix}/gcc-bin/${version}/g++ \
| tee ${tmpfile}
else
- /usr/lib/icecc/icecc-create-env \
+ /usr/libexec/icecc/icecc-create-env \
/usr/${target}/${prefix}/gcc-bin/${version}/${prefix}-gcc \
/usr/${target}/${prefix}/gcc-bin/${version}/${prefix}-g++ \
| tee ${tmpfile}