From 94f6ab3fd19bb6b98884a2bbf7d2285cb83daccc Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 25 Jun 2004 00:55:12 -0400 Subject: [PATCH] Makefile.in (mke2fs.static): Add the blkid library to so mke2fs.static builds correctly. --- misc/ChangeLog | 5 +++++ misc/Makefile.in | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/misc/ChangeLog b/misc/ChangeLog index f10d991..38c286c 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 61176ef..2f1b0e8 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) -- 1.8.3.1