From: Theodore Ts'o Date: Fri, 25 Jun 2004 04:55:12 +0000 (-0400) Subject: Makefile.in (mke2fs.static): Add the blkid library to so X-Git-Tag: E2FSPROGS-1_36~153 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=94f6ab3fd19bb6b98884a2bbf7d2285cb83daccc;p=thirdparty%2Fe2fsprogs.git Makefile.in (mke2fs.static): Add the blkid library to so mke2fs.static builds correctly. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index f10d9911f..38c286c60 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 61176ef39..2f1b0e8a0 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)