diff --git a/misc/ChangeLog b/misc/ChangeLog index f10d9911..38c286c6 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,8 @@ +2004-06-25 Theodore Ts'o + + * Makefile.in (mke2fs.static): Add the blkid library to so + mke2fs.static builds correctly. + 2004-04-11 Theodore Ts'o * tune2fs.8.in: Fixed spelling error (Addresses Debian Bug #242995) diff --git a/misc/Makefile.in b/misc/Makefile.in index 61176ef3..2f1b0e8a 100644 --- a/misc/Makefile.in +++ b/misc/Makefile.in @@ -88,9 +88,10 @@ mke2fs: $(MKE2FS_OBJS) $(DEPLIBS) $(LIBE2P) $(DEPLIBUUID) $(DEPLIBS_BLKID) $(CC) $(ALL_LDFLAGS) -o mke2fs $(MKE2FS_OBJS) $(LIBS) $(LIBS_BLKID) \ $(LIBE2P) $(LIBUUID) $(LIBINTL) -mke2fs.static: $(MKE2FS_OBJS) $(STATIC_DEPLIBS) $(STATIC_LIBE2P) $(DEPSTATIC_LIBUUID) +mke2fs.static: $(MKE2FS_OBJS) $(STATIC_DEPLIBS) $(STATIC_LIBE2P) $(DEPSTATIC_LIBUUID) $(DEPSTATIC_LIBBLKID) $(CC) $(ALL_LDFLAGS) -static -o mke2fs.static $(MKE2FS_OBJS) \ - $(STATIC_LIBS) $(STATIC_LIBE2P) $(STATIC_LIBUUID) $(LIBINTL) + $(STATIC_LIBS) $(STATIC_LIBE2P) $(STATIC_LIBBLKID) \ + $(STATIC_LIBUUID) $(LIBINTL) resize2fs: resize2fs.o $(DEPLIBS) $(CC) $(ALL_LDFLAGS) -o resize2fs resize2fs.o $(LIBS) $(LIBINTL)