]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Address parallel build problem in the library Makefiles
authorTheodore Ts'o <tytso@mit.edu>
Sun, 11 Dec 2005 03:23:01 +0000 (22:23 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Sun, 11 Dec 2005 03:23:01 +0000 (22:23 -0500)
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>
12 files changed:
lib/blkid/ChangeLog
lib/blkid/Makefile.in
lib/e2p/ChangeLog
lib/e2p/Makefile.in
lib/et/ChangeLog
lib/et/Makefile.in
lib/ext2fs/ChangeLog
lib/ext2fs/Makefile.in
lib/ss/ChangeLog
lib/ss/Makefile.in
lib/uuid/ChangeLog
lib/uuid/Makefile.in

index a31bbfddfcc1cf15a498b5d1c8ad283f39d98080..7683a77a12ddbf0b5c132c140efb13b18d5d51a9 100644 (file)
@@ -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
index 2fc589c74dc89297754cd774b7e46bf7556d28a7..2dd9260943afcfc52d569cb4e5931604278b68c8 100644 (file)
@@ -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 \
index 79f62fdaeae749d90ad03cd8cdf9b56ac38e6c58..763f94068fe288e2d50e998181e81890cf9f85a2 100644 (file)
@@ -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
index ac24940a55a6c7bdcc79e775af1347e4a0a5fc0f..6dd3922e91a3dbe895d8ec20341f0cf5a0523d77 100644 (file)
@@ -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
index 7505fa86a6ead5c562a0d608355d33f49cd4f0c4..c8f63d23e61a47dd4029646947c1d152614ad924 100644 (file)
@@ -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
index 066a47a1412e3f78efb1c8ff4cb5d31b33b66c05..fc2aa61c97c78feb786fe6ea83ad20b8f3e824ac 100644 (file)
@@ -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
index 0db4eff40f25201e519eb699e0462a0063500260..f2cd2fb8b0fb891af62d18d0013f4dce4ebea753 100644 (file)
@@ -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-12-10  Theodore Ts'o  <tytso@mit.edu>
 
        * res_gdt.c (ext2fs_create_resize_inode): Fix type-punning warning.
index b857c6133c71af030e62e3bf8d2ed82afaeb996a..d0412ff95b6278174e2a4dee8e2bb4f72629bb56 100644 (file)
@@ -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
index 13447b05b5cd579ffa4c56bd490543cdf876f0f7..3a4149118ba483874b5b147a028eff3caf366211 100644 (file)
@@ -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
index bbcc38b5948368e5a96968a57833d2d14be25dca..40e100548e50b8674616821efa937583884f4329 100644 (file)
@@ -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
index b90e0637874953af82134dcc52581e5206920f0c..26a96993d9e8010b75b4e29342d3434aed1892c4 100644 (file)
@@ -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
index 46560908005c261c36121da6c5595d54e20fd36a..2c6b4fa8f928dd5b0001189ecf537861eadd9da7 100644 (file)
@@ -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