From: Saul Wold <sgw@linux.intel.com>
To: Hongxu Jia <hongxu.jia@windriver.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 1/1] apt-native: fix the creation of apt.conf.sample
Date: Mon, 07 Jan 2013 13:36:33 -0800 [thread overview]
Message-ID: <50EB3FE1.6020803@linux.intel.com> (raw)
In-Reply-To: <3dad51b86a16d1bc44a8ac69c8a0efac870768e1.1357461730.git.hongxu.jia@windriver.com>
On 01/06/2013 12:43 AM, Hongxu Jia wrote:
> The file of apt.conf.sample is kept in outdir, and outdir is assigned
> by "os.path.join" with the params of ${D}, ${sysconfdir} and "apt". But
> ${sysconfdir} is an absolute dir and that is not allowed by "os.path.join".
>
> The following is the help on function os.path.join(a, *p):
> Join two or more pathname components, inserting '/' as needed.
> If any component is an absolute path, all previous path components
> will be discarded.
>
> So remove "/" in ${sysconfdir} to create "apt.conf.sample" if it doesn't
> exist, not by the existance of prefix dir.
>
> [YOCTO #3677]
>
> Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> ---
> meta/recipes-devtools/apt/apt-native.inc | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-devtools/apt/apt-native.inc b/meta/recipes-devtools/apt/apt-native.inc
> index ab89f71..0de159a 100644
> --- a/meta/recipes-devtools/apt/apt-native.inc
> +++ b/meta/recipes-devtools/apt/apt-native.inc
> @@ -20,14 +20,17 @@ python do_install_config () {
>
> data = d.expand(data)
>
> - outdir = os.path.join(d.getVar('D', True), d.getVar('sysconfdir', True), 'apt')
> + # os.path.join does not allow sysconfdir to be a absolute dir
> + outdir = os.path.join(d.getVar('D', True), d.getVar('sysconfdir', True)[1:], 'apt')
> if not os.path.exists(outdir):
> os.makedirs(outdir)
> - outpath = os.path.join(outdir, 'apt.conf.sample')
>
> + outpath = os.path.join(outdir, 'apt.conf.sample')
> + if not os.path.exists(outpath):
> outfile = file(outpath, 'w')
> outfile.write(data)
> outfile.close()
> + bb.note("create %s" %outpath)
Do we need to keep this debug message around?
Sau!
> }
>
> do_install_base () {
>
next prev parent reply other threads:[~2013-01-07 21:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-06 8:43 [PATCH 0/1] apt-native: fix the creation of apt.conf.sample Hongxu Jia
2013-01-06 8:43 ` [PATCH 1/1] " Hongxu Jia
2013-01-07 21:36 ` Saul Wold [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-01-08 10:23 [PATCH 0/1] " Hongxu Jia
2013-01-08 10:23 ` [PATCH 1/1] " Hongxu Jia
2013-01-08 10:47 ` Richard Purdie
2013-01-10 7:58 [PATCH 0/1] " Hongxu Jia
2013-01-10 7:58 ` [PATCH 1/1] " Hongxu Jia
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50EB3FE1.6020803@linux.intel.com \
--to=sgw@linux.intel.com \
--cc=hongxu.jia@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox