Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] e2fsprogs: Add missing dependency of tst_uuid.o on uuid.h
@ 2011-07-18 12:11 Arnout Vandecappelle
  2011-07-18 13:02 ` Peter Korsgaard
  2011-07-24 22:26 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2011-07-18 12:11 UTC (permalink / raw)
  To: buildroot

From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>

The missing dependency used to break parallel builds.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 ...rogs-1.41.9-add-missing-dep-of-tst_uuid-o.patch |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)
 create mode 100644 package/e2fsprogs/e2fsprogs-1.41.9-add-missing-dep-of-tst_uuid-o.patch

diff --git a/package/e2fsprogs/e2fsprogs-1.41.9-add-missing-dep-of-tst_uuid-o.patch b/package/e2fsprogs/e2fsprogs-1.41.9-add-missing-dep-of-tst_uuid-o.patch
new file mode 100644
index 0000000..3a60e89
--- /dev/null
+++ b/package/e2fsprogs/e2fsprogs-1.41.9-add-missing-dep-of-tst_uuid-o.patch
@@ -0,0 +1,18 @@
+Add missing dependency of tst_uuid.o on uuid.h
+
+The missing dependency used to break parallel builds.
+
+Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
+---
+diff -Nrup e2fsprogs.orig//lib/uuid/Makefile.in e2fsprogs-1.41.14//lib/uuid/Makefile.in
+--- e2fsprogs.orig//lib/uuid/Makefile.in	2010-06-14 05:07:36.000000000 +0200
++++ e2fsprogs-1.41.14//lib/uuid/Makefile.in	2011-07-18 13:44:58.000000000 +0200
+@@ -76,7 +76,7 @@ uuid.h: $(srcdir)/uuid.h.in
+ $(top_builddir)/lib/uuid/uuid_types.h: $(srcdir)/uuid_types.h.in $(top_builddir)/config.status
+ 	cd $(top_builddir); CONFIG_FILES=$(my_dir)/uuid_types.h ./config.status
+ 
+-tst_uuid.o: $(srcdir)/tst_uuid.c
++tst_uuid.o: $(srcdir)/tst_uuid.c uuid.h
+ 	$(E) "	CC $@"
+ 	$(Q) $(CC) $(ALL_CFLAGS) -c $(srcdir)/tst_uuid.c -o tst_uuid.o
+ 
-- 
1.7.5.4

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

* [Buildroot] [PATCH] e2fsprogs: Add missing dependency of tst_uuid.o on uuid.h
  2011-07-18 12:11 [Buildroot] [PATCH] e2fsprogs: Add missing dependency of tst_uuid.o on uuid.h Arnout Vandecappelle
@ 2011-07-18 13:02 ` Peter Korsgaard
  2011-07-18 13:06   ` Arnout Vandecappelle
  2011-07-24 22:26 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2011-07-18 13:02 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 Arnout> From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
 Arnout> The missing dependency used to break parallel builds.

 Arnout> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Thanks. What is the upstream status of this patch?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] e2fsprogs: Add missing dependency of tst_uuid.o on uuid.h
  2011-07-18 13:02 ` Peter Korsgaard
@ 2011-07-18 13:06   ` Arnout Vandecappelle
  0 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2011-07-18 13:06 UTC (permalink / raw)
  To: buildroot


On Monday 18 July 2011 15:02:39, Peter Korsgaard wrote:
> >>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> 
writes:
>  Arnout> From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
>  Arnout> The missing dependency used to break parallel builds.
> 
>  Arnout> Signed-off-by: Arnout Vandecappelle (Essensium/Mind)
> <arnout@mind.be>
> 
> Thanks. What is the upstream status of this patch?

 I sent it to Theodore T'so at the same time.  He wasn't as quick in replying 
:-)

 Regards,
 Arnout

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  31BB CF53 8660 6F88 345D  54CC A836 5879 20D7 CF43

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

* [Buildroot] [PATCH] e2fsprogs: Add missing dependency of tst_uuid.o on uuid.h
  2011-07-18 12:11 [Buildroot] [PATCH] e2fsprogs: Add missing dependency of tst_uuid.o on uuid.h Arnout Vandecappelle
  2011-07-18 13:02 ` Peter Korsgaard
@ 2011-07-24 22:26 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2011-07-24 22:26 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 Arnout> From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
 Arnout> The missing dependency used to break parallel builds.

Thanks, committed.

I noticed it is still not in e2fsprogs git, please reping upstream.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2011-07-24 22:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-18 12:11 [Buildroot] [PATCH] e2fsprogs: Add missing dependency of tst_uuid.o on uuid.h Arnout Vandecappelle
2011-07-18 13:02 ` Peter Korsgaard
2011-07-18 13:06   ` Arnout Vandecappelle
2011-07-24 22:26 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox