From: Theodore Ts'o Date: Sun, 11 Dec 2005 03:23:01 +0000 (-0500) Subject: Address parallel build problem in the library Makefiles X-Git-Tag: E2FSPROGS-1.39-WIP-1210~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ded50b37cfb3d3864792dfed7793029a061267e;p=thirdparty%2Fe2fsprogs.git Address parallel build problem in the library Makefiles Add a dependency to make sure that the subdirectories are created before creating all of the object files. Addresses Sourceforge Bug: #1261553 Signed-off-by: "Theodore Ts'o" --- diff --git a/lib/blkid/ChangeLog b/lib/blkid/ChangeLog index a31bbfddf..7683a77a1 100644 --- a/lib/blkid/ChangeLog +++ b/lib/blkid/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o + + * Makefile.in: Add a dependency to make sure that the + subdirectories are created before creating all of the + object files. + 2005-09-10 Theodore Ts'o * probe.c (probe_fat): Search the root directory of FAT diff --git a/lib/blkid/Makefile.in b/lib/blkid/Makefile.in index 2fc589c74..2dd926094 100644 --- a/lib/blkid/Makefile.in +++ b/lib/blkid/Makefile.in @@ -181,6 +181,8 @@ distclean:: clean $(RM) -f .depend Makefile blkid.pc \ $(srcdir)/TAGS $(srcdir)/Makefile.in.old +$(OBJS): subdirs + # +++ Dependency line eater +++ # # Makefile dependencies follow. This must be the last section in @@ -205,7 +207,7 @@ read.o: $(srcdir)/read.c $(srcdir)/blkidP.h $(srcdir)/blkid.h \ $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/list.h \ $(top_srcdir)/lib/uuid/uuid.h resolve.o: $(srcdir)/resolve.c $(srcdir)/blkidP.h $(srcdir)/blkid.h \ - $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/list.h $(srcdir)/probe.h + $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/list.h save.o: $(srcdir)/save.c $(srcdir)/blkidP.h $(srcdir)/blkid.h \ $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/list.h tag.o: $(srcdir)/tag.c $(srcdir)/blkidP.h $(srcdir)/blkid.h \ diff --git a/lib/e2p/ChangeLog b/lib/e2p/ChangeLog index 79f62fdae..763f94068 100644 --- a/lib/e2p/ChangeLog +++ b/lib/e2p/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o + + * Makefile.in: Add a dependency to make sure that the + subdirectories are created before creating all of the + object files. + 2006-06-30 Theodore Ts'o * Release of E2fsprogs 1.38 diff --git a/lib/e2p/Makefile.in b/lib/e2p/Makefile.in index ac24940a5..6dd3922e9 100644 --- a/lib/e2p/Makefile.in +++ b/lib/e2p/Makefile.in @@ -103,6 +103,8 @@ distclean:: clean $(RM) -f .depend Makefile e2p.pc \ $(srcdir)/TAGS $(srcdir)/Makefile.in.old +$(OBJS): subdirs + # +++ Dependency line eater +++ # # Makefile dependencies follow. This must be the last section in diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog index 7505fa86a..c8f63d23e 100644 --- a/lib/et/ChangeLog +++ b/lib/et/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o + + * Makefile.in: Add a dependency to make sure that the + subdirectories are created before creating all of the + object files. + 2005-07-19 Theodore Ts'o * et_c.awk: Fix bug where error messages using continuations diff --git a/lib/et/Makefile.in b/lib/et/Makefile.in index 066a47a14..fc2aa61c9 100644 --- a/lib/et/Makefile.in +++ b/lib/et/Makefile.in @@ -132,6 +132,8 @@ distclean:: clean $(RM) -f .depend Makefile com_err.pc \ $(srcdir)/TAGS $(srcdir)/Makefile.in.old +$(OBJS): subdirs + # +++ Dependency line eater +++ # # Makefile dependencies follow. This must be the last section in diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index 0db4eff40..f2cd2fb8b 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o + + * Makefile.in: Add a dependency to make sure that the + subdirectories are created before creating all of the + object files. + 2005-12-10 Theodore Ts'o * res_gdt.c (ext2fs_create_resize_inode): Fix type-punning warning. diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index b857c6133..d0412ff95 100644 --- a/lib/ext2fs/Makefile.in +++ b/lib/ext2fs/Makefile.in @@ -270,6 +270,8 @@ distclean:: clean # $(top_builddir)/lib/ext2fs/ext2_err.h: ext2_err.h +$(OBJS): subdirs + # +++ Dependency line eater +++ # # Makefile dependencies follow. This must be the last section in diff --git a/lib/ss/ChangeLog b/lib/ss/ChangeLog index 13447b05b..3a4149118 100644 --- a/lib/ss/ChangeLog +++ b/lib/ss/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o + + * Makefile.in: Add a dependency to make sure that the + subdirectories are created before creating all of the + object files. + 2005-07-25 Theodore Ts'o * pager.c (ss_safe_getenv): Pass in zero to the unusued arguments diff --git a/lib/ss/Makefile.in b/lib/ss/Makefile.in index bbcc38b59..40e100548 100644 --- a/lib/ss/Makefile.in +++ b/lib/ss/Makefile.in @@ -173,6 +173,8 @@ distclean:: clean # $(top_builddir)/lib/ss/ss_err.h: ss_err.h +$(OBJS): subdirs + # +++ Dependency line eater +++ # # Makefile dependencies follow. This must be the last section in diff --git a/lib/uuid/ChangeLog b/lib/uuid/ChangeLog index b90e06378..26a96993d 100644 --- a/lib/uuid/ChangeLog +++ b/lib/uuid/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o + + * Makefile.in: Add a dependency to make sure that the + subdirectories are created before creating all of the + object files. + 2006-06-30 Theodore Ts'o * Release of E2fsprogs 1.38 diff --git a/lib/uuid/Makefile.in b/lib/uuid/Makefile.in index 465609080..2c6b4fa8f 100644 --- a/lib/uuid/Makefile.in +++ b/lib/uuid/Makefile.in @@ -179,6 +179,8 @@ distclean:: clean ../../lib/libuuid.so: image ../../lib/libuuid.dylib: image +$(OBJS): subdirs + # +++ Dependency line eater +++ # # Makefile dependencies follow. This must be the last section in