From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B9743138247 for ; Sun, 15 Dec 2013 04:19:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 361AAE0B5F; Sun, 15 Dec 2013 04:19:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B53EAE0B60 for ; Sun, 15 Dec 2013 04:19:50 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2F3333F547 for ; Sun, 15 Dec 2013 04:19:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E2C4DE5797 for ; Sun, 15 Dec 2013 04:19:47 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1387081041.7e37dc04cadec0722eb692511084750b60c93f90.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: modules/ X-VCS-Repository: proj/catalyst X-VCS-Files: modules/generic_stage_target.py X-VCS-Directories: modules/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 7e37dc04cadec0722eb692511084750b60c93f90 X-VCS-Branch: master Date: Sun, 15 Dec 2013 04:19:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 79dfe8d4-53ff-420c-a77f-a1d60fad7c7f X-Archives-Hash: d3bdca82e1b2c1db7205d8c0725f13bb commit: 7e37dc04cadec0722eb692511084750b60c93f90 Author: Brian Dolbec gentoo org> AuthorDate: Fri Nov 22 04:51:13 2013 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Dec 15 04:17:21 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=7e37dc04 modules/generic_stage_target.py: Use 'distdir' instead of hard-coding '${PORTAGE}/distfiles' W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Reviewed-by: Matt Turner gentoo.org> Signed-off-by: W. Trevor King tremily.us> Signed-off-by: Brian Dolbec gentoo.org> --- modules/generic_stage_target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index 0803a8c..fc54fbf 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -1065,7 +1065,7 @@ class generic_stage_target(generic_target): print "\tpackage.use in the profile and portage_confdir. You've been warned!" myf.write('PORTDIR="%s"\n' % self.settings['portdir']) - myf.write('DISTDIR="${PORTDIR}/distfiles"\n') + myf.write('DISTDIR="%s"\n' % self.settings['distdir']) myf.write('PKGDIR="${PORTDIR}/packages"\n') """ Setup the portage overlay """