All of lore.kernel.org
 help / color / mirror / Atom feed
* Master build error caused a small typo by commit today : fetch2: unpack revision
@ 2011-02-12  5:05 Ke, Liping
  2011-02-12  7:53 ` Ke, Liping
  0 siblings, 1 reply; 10+ messages in thread
From: Ke, Liping @ 2011-02-12  5:05 UTC (permalink / raw)
  To: richard.purdie@linuxfoundation.org, mark.hatle@windriver.com
  Cc: yocto@yoctoproject.org

Hi, all

Just found a small typo which caused built error today. The "%d" (file) should be changed to "%s", otherwise, compile error.

Anybody could help to modify the small bug if you're happening sending patches.

Thanks a lot for your help!
criping





author	Mark Hatle <mark.hatle@windriver.com>	2011-02-11 17:43:54 (GMT)
committer	 Richard Purdie <richard.purdie@linuxfoundation.org>	2011-02-12 00:30:29 (GMT)
commit	3faa635fd408695dd5b754fda3f6060dd670b81d (patch) (side-by-side diff)
tree	d0ba5d2d4acca9f7748029116f3a74877ee899c9
parent	e56f63a2843e5a7d70fd60e0aaed4d962a277da7 (diff)
download	poky-3faa635fd408695dd5b754fda3f6060dd670b81d.zip
poky-3faa635fd408695dd5b754fda3f6060dd670b81d.tar.gz
poky-3faa635fd408695dd5b754fda3f6060dd670b81d.tar.bz2



@@ -706,17 +720,17 @@ class FetchMethod(object):
                             destdir = "."
                         elif not os.access("%s/%s" % (rootdir, destdir), os.F_OK):
                             os.makedirs("%s/%s" % (rootdir, destdir))
-                    cmd = 'cp -pPR %s %s/%s/' % (file, rootdir, destdir)
+                    #cmd = 'cp -pPR %s %s/%s/' % (file, rootdir, destdir)
+                    cmd = 'tar -cf - -C "%d" -ps . | tar -xf - -C "%s/%s/"' % (file, rootdir, destdir)






^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2011-02-13 19:27 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-12  5:05 Master build error caused a small typo by commit today : fetch2: unpack revision Ke, Liping
2011-02-12  7:53 ` Ke, Liping
2011-02-12  9:30   ` Cui, Dexuan
2011-02-12 18:09     ` Mark Hatle
2011-02-12 19:08       ` Koen Kooi
2011-02-12 19:17         ` Gary Thomas
2011-02-12 22:38           ` Mark Hatle
2011-02-13  1:02             ` Scott Garman
2011-02-13  7:12               ` Ke, Liping
2011-02-13 19:27                 ` Mark Hatle

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.