aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2009-05-06 20:47:10 +0000
committerfuzzyray <fuzzyray@gentoo.org>2009-05-06 20:47:10 +0000
commit642863ae8a899848ccf1dcf8693c3e5db5288b37 (patch)
tree3d3ee533a704b949ece7024d37d9722062a5c453
parentAdd patch from MATSUI Tetsushi to have eclean take EPREFIX into account for d... (diff)
downloadgentoolkit-642863ae8a899848ccf1dcf8693c3e5db5288b37.tar.gz
gentoolkit-642863ae8a899848ccf1dcf8693c3e5db5288b37.tar.bz2
gentoolkit-642863ae8a899848ccf1dcf8693c3e5db5288b37.zip
Revert EPREFIX patch commited in rev 610
svn path=/branches/gentoolkit-0.2.4/; revision=614
-rw-r--r--ChangeLog4
-rw-r--r--src/eclean/eclean2
2 files changed, 0 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index d939585..6597880 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,3 @@
-2009-05-06: Paul Varner <fuzzyray@gentoo.org>
- * eclean: Add patch from MATSUI Tetsushi to have eclean take EPREFIX
- into account for distfiles.exclude. (Bug 241600)
-
2009-04-30: Paul Varner <fuzzyray@gentoo.org>
* revdep-rebuild: Add patch from loki_val to check -l dependencies in
.la files (Bug #267898)
diff --git a/src/eclean/eclean b/src/eclean/eclean
index 423fc88..55cc2a7 100644
--- a/src/eclean/eclean
+++ b/src/eclean/eclean
@@ -806,8 +806,6 @@ def main():
# parse the exclusion file
if not 'exclude-file' in myoptions:
my_exclude_file = "/etc/%s/%s.exclude" % (__productname__ , myaction)
- if 'EPREFIX' in os.environ:
- my_exclude_file = os.environ['EPREFIX'] + my_exclude_file
if os.path.isfile(my_exclude_file):
myoptions['exclude-file'] = my_exclude_file
if 'exclude-file' in myoptions: