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 4B95B138247 for ; Sun, 15 Dec 2013 04:01:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD036E0B0D; Sun, 15 Dec 2013 04:00:56 +0000 (UTC) Received: from qmta07.westchester.pa.mail.comcast.net (qmta07.westchester.pa.mail.comcast.net [76.96.62.64]) by pigeon.gentoo.org (Postfix) with ESMTP id 4E036E0AEF for ; Sun, 15 Dec 2013 04:00:56 +0000 (UTC) Received: from omta10.westchester.pa.mail.comcast.net ([76.96.62.28]) by qmta07.westchester.pa.mail.comcast.net with comcast id 1fuD1n0020cZkys57g0vBZ; Sun, 15 Dec 2013 04:00:55 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta10.westchester.pa.mail.comcast.net with comcast id 1g0u1n00R152l3L3Wg0vF2; Sun, 15 Dec 2013 04:00:55 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 8021CD69949; Sat, 14 Dec 2013 20:00:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387080054; bh=hQeChVdK0+jFnyCPGxUGGTj12wda/XIGUQXXA0NQmjM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=e0bbpbKpPQ2EZkPYqsQGa3oowMt7sh78HhlKaVY8pFjxkLosVSUSxjr4DygpETwLK 8iCVHOwyQnDUYj24c/da68MiYGQy6b2Sm3HgAzjbDl8rK51dlWrh8e3igFWqSbZ9Sk wlf3rsk8uwqit1vl9GJXkIJFkhypwwl40P/7YzjE= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v3 04/19] modules/generic_stage_target.py: Use 'distdir' instead of hard-coding '${PORTAGE}/distfiles' Date: Sat, 14 Dec 2013 20:00:30 -0800 Message-Id: X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: <20131215032258.GK25409@odin.tremily.us> In-Reply-To: References: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387080055; bh=vTOv/eG/JdGt04SGevAGwJNAg3xqsM5yafd3na+0aTk=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=Kpx7EpMJhAGr9gy7OAlODuP9LRFtt1nbW2ZjwtkxXfU97NQwMz0/pwUJ2aFcrXK8Z clhwUfyRHjarhu9Zkam+dak8GWqNzmFpNc+yrru+f8DP1cpTthRrVdLSCl8JEWSiCG aMcAR3FiUuhjQDqQqN6lffEwFm+eNuQCluR/yiki9ulLnP3D5XsceRh7/TMxywExzC 15dV2gZeDj//EsSppifrm9VYL6Vw+EjHt/cixlUhoW03EyKE05qgIZr2eS9XA6cQiC jeqBg9NeRHzl6vYxbaW2NQFSLDiI9L0YIYrfsn8h3c7A+utI/WyZ0skWYn5glyKMZ/ KtL3sg4XHycxw== Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 84dacb09-16f5-45f4-b904-4a14aa0793fb X-Archives-Hash: 441f15c21efdce1534d304c8aeb7fa77 From: Brian Dolbec W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Signed-off-by: W. Trevor King Signed-off-by: Brian Dolbec --- 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 """ -- 1.8.3.2