diff options
author | Theodore Ts'o <tytso@mit.edu> | 2005-12-10 22:23:01 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2005-12-10 22:23:01 -0500 |
commit | 3ded50b37cfb3d3864792dfed7793029a061267e (patch) | |
tree | a3802377a50557caaf8bc4f1eea333352f8bea28 /lib | |
parent | 9b9a780f5a5823865f62f0c9fd194d262f63a06f (diff) | |
download | e2fsprogs-3ded50b37cfb3d3864792dfed7793029a061267e.tar.gz |
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" <tytso@mit.edu>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/blkid/ChangeLog | 6 | ||||
-rw-r--r-- | lib/blkid/Makefile.in | 4 | ||||
-rw-r--r-- | lib/e2p/ChangeLog | 6 | ||||
-rw-r--r-- | lib/e2p/Makefile.in | 2 | ||||
-rw-r--r-- | lib/et/ChangeLog | 6 | ||||
-rw-r--r-- | lib/et/Makefile.in | 2 | ||||
-rw-r--r-- | lib/ext2fs/ChangeLog | 6 | ||||
-rw-r--r-- | lib/ext2fs/Makefile.in | 2 | ||||
-rw-r--r-- | lib/ss/ChangeLog | 6 | ||||
-rw-r--r-- | lib/ss/Makefile.in | 2 | ||||
-rw-r--r-- | lib/uuid/ChangeLog | 6 | ||||
-rw-r--r-- | lib/uuid/Makefile.in | 2 |
12 files changed, 49 insertions, 1 deletions
diff --git a/lib/blkid/ChangeLog b/lib/blkid/ChangeLog index a31bbfdd..7683a77a 100644 --- a/lib/blkid/ChangeLog +++ b/lib/blkid/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o <tytso@mit.edu> + + * 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 <tytso@mit.edu> * probe.c (probe_fat): Search the root directory of FAT diff --git a/lib/blkid/Makefile.in b/lib/blkid/Makefile.in index 2fc589c7..2dd92609 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 79f62fda..763f9406 100644 --- a/lib/e2p/ChangeLog +++ b/lib/e2p/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o <tytso@mit.edu> + + * 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 <tytso@mit.edu> * Release of E2fsprogs 1.38 diff --git a/lib/e2p/Makefile.in b/lib/e2p/Makefile.in index ac24940a..6dd3922e 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 7505fa86..c8f63d23 100644 --- a/lib/et/ChangeLog +++ b/lib/et/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o <tytso@mit.edu> + + * 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 <tytso@mit.edu> * et_c.awk: Fix bug where error messages using continuations diff --git a/lib/et/Makefile.in b/lib/et/Makefile.in index 066a47a1..fc2aa61c 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 0db4eff4..f2cd2fb8 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,5 +1,11 @@ 2005-12-10 Theodore Ts'o <tytso@mit.edu> + * 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 <tytso@mit.edu> + * res_gdt.c (ext2fs_create_resize_inode): Fix type-punning warning. * read_bb_file.c (ext2fs_read_bb_FILE): Use a data structure diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index b857c613..d0412ff9 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 13447b05..3a414911 100644 --- a/lib/ss/ChangeLog +++ b/lib/ss/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o <tytso@mit.edu> + + * 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 <tytso@mit.edu> * 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 bbcc38b5..40e10054 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 b90e0637..26a96993 100644 --- a/lib/uuid/ChangeLog +++ b/lib/uuid/ChangeLog @@ -1,3 +1,9 @@ +2005-12-10 Theodore Ts'o <tytso@mit.edu> + + * 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 <tytso@mit.edu> * Release of E2fsprogs 1.38 diff --git a/lib/uuid/Makefile.in b/lib/uuid/Makefile.in index 46560908..2c6b4fa8 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 |