summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Welch <zwelch@gentoo.org>2003-03-18 06:01:03 +0000
committerZack Welch <zwelch@gentoo.org>2003-03-18 06:01:03 +0000
commite646274eae7f440229f6c84c0c1c53393e6af054 (patch)
treea32a52c4f9cb7c68cba4dcc001ea2dd359ce28a6
parentinitial import of zebedee, submitted by Jayson Larose. (diff)
downloadgentoo-2-e646274eae7f440229f6c84c0c1c53393e6af054.tar.gz
gentoo-2-e646274eae7f440229f6c84c0c1c53393e6af054.tar.bz2
gentoo-2-e646274eae7f440229f6c84c0c1c53393e6af054.zip
fix einfo issue in new config function
-rw-r--r--sys-devel/distcc/ChangeLog8
-rw-r--r--sys-devel/distcc/distcc-1.2.3-r2.ebuild (renamed from sys-devel/distcc/distcc-1.2.3-r1.ebuild)2
-rw-r--r--sys-devel/distcc/files/1.2.3/distcc-config7
-rw-r--r--sys-devel/distcc/files/digest-distcc-1.2.3-r2 (renamed from sys-devel/distcc/files/digest-distcc-1.2.3-r1)0
4 files changed, 13 insertions, 4 deletions
diff --git a/sys-devel/distcc/ChangeLog b/sys-devel/distcc/ChangeLog
index 3204f8a791a8..82ed14297023 100644
--- a/sys-devel/distcc/ChangeLog
+++ b/sys-devel/distcc/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-devel/distcc
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/ChangeLog,v 1.33 2003/03/17 23:34:07 zwelch Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/ChangeLog,v 1.34 2003/03/18 06:01:03 zwelch Exp $
+
+*distcc-1.2.3-r2 (17 Mar 2003)
+
+ 17 Mar 2003; Zach Welch <zwelch@gentoo.org> distcc-1.2.3-r1.ebuild,
+ distcc-1.2.3-r1.ebuild, distcc-1.2.3-r2.ebuild, files/1.2.3/distcc-config:
+ fix einfo issue in new config function
*distcc-1.2.3-r1 (17 Mar 2003)
diff --git a/sys-devel/distcc/distcc-1.2.3-r1.ebuild b/sys-devel/distcc/distcc-1.2.3-r2.ebuild
index d51d2c98dd37..3a666e2ecc47 100644
--- a/sys-devel/distcc/distcc-1.2.3-r1.ebuild
+++ b/sys-devel/distcc/distcc-1.2.3-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/distcc-1.2.3-r1.ebuild,v 1.1 2003/03/17 23:34:07 zwelch Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/distcc-1.2.3-r2.ebuild,v 1.1 2003/03/18 06:01:03 zwelch Exp $
inherit eutils
diff --git a/sys-devel/distcc/files/1.2.3/distcc-config b/sys-devel/distcc/files/1.2.3/distcc-config
index 384af08147f1..46beb3abf67b 100644
--- a/sys-devel/distcc/files/1.2.3/distcc-config
+++ b/sys-devel/distcc/files/1.2.3/distcc-config
@@ -130,14 +130,17 @@ dccc_set_env() {
shift
dccc_install_env
mv -f ${DISTCC_ENV_FILE} ${DISTCC_ENV_FILE}.tmp
+ if [ -n "${*}" ]; then
+ einfo "Setting ${xxENV}=\"${*}\""
+ else
+ einfo "Clearing ${xxENV}"
+ fi
# redirect the following block to create new file
{
egrep -v "${xxENV}[= ]" ${DISTCC_ENV_FILE}.tmp
if [ -n "${*}" ]; then
- einfo "Setting ${xxENV}=\"${*}\""
echo "${xxENV}=\"${*}\""
else
- einfo "Setting ${xxENV}=\"${*}\""
echo "# ${xxENV} is not set"
fi
} >> ${DISTCC_ENV_FILE}
diff --git a/sys-devel/distcc/files/digest-distcc-1.2.3-r1 b/sys-devel/distcc/files/digest-distcc-1.2.3-r2
index 2064bb1d46a2..2064bb1d46a2 100644
--- a/sys-devel/distcc/files/digest-distcc-1.2.3-r1
+++ b/sys-devel/distcc/files/digest-distcc-1.2.3-r2