All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jamie Lenehan <lenehan@twibble.org>
To: openembedded-devel@openembedded.org
Subject: Re: patcher changes - quilt patching breakage?
Date: Tue, 29 Aug 2006 10:41:22 +1000	[thread overview]
Message-ID: <20060829004122.GA22529@twibble.org> (raw)
In-Reply-To: <20060828235951.GA16344@twibble.org>

On Tue, Aug 29, 2006 at 09:59:51AM +1000, Jamie Lenehan wrote:
> I've got huge amounts of breakage from quilt due to the patching
> related changs. Is anyone else seeing this. It looks like I can't
> apply any patches more than one.. which is rather wierd.

The problem is that my build directory is:

 /data/oe/build/titan-glibc-24

and I have a directory called:

 /data/oe/patches

It appears that quilt searches throught he path for a directory
called "patches" and uses that for all it's patches. So the patches
are being stored in my /data/oe/patches directory instead of in the
package itself.

The patch command used to mkdir the patches directory, but this is no
longer happening. The following patch appears to make things work
again - does this look correct to people who understand this patch
class?

#
# old_revision [14917049ca38865d541726340df4e735749d9fc9]
#
# patch "classes/patch.bbclass"
#  from [06bfa04274235a178643633deba99054024b741c]
#    to [43a7cdac0d459f62c68c6d258f001d3b06688906]
#
============================================================
--- classes/patch.bbclass       06bfa04274235a178643633deba99054024b741c
+++ classes/patch.bbclass       43a7cdac0d459f62c68c6d258f001d3b06688906
@@ -174,6 +174,9 @@ def patch_init(d):
                def __init__(self, dir, d):
                        PatchSet.__init__(self, dir, d)
                        self.initialized = False
+                       p = os.path.join(self.dir, 'patches')
+                       if not os.path.exists(p):
+                               os.mkdir(p)

                def Clean(self):
                        try:

-- 
 Jamie Lenehan <lenehan@twibble.org>



  reply	other threads:[~2006-08-29  0:43 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-28 23:59 patcher changes - quilt patching breakage? Jamie Lenehan
2006-08-29  0:41 ` Jamie Lenehan [this message]
2006-08-30  8:21   ` Koen Kooi
2006-08-30 18:08     ` cyril Romain
2006-09-01  1:43     ` Jamie Lenehan

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=20060829004122.GA22529@twibble.org \
    --to=lenehan@twibble.org \
    --cc=openembedded-devel@lists.openembedded.org \
    --cc=openembedded-devel@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.