From: Theodore Ts'o Date: Fri, 18 Apr 2003 01:58:27 +0000 (-0400) Subject: Fsck does not need to linked against the ext2 libraries anymore. X-Git-Tag: E2FSPROGS-1_33~9 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=814dc05673af0e879ba073c9010b78266f832bf6;p=tools%2Fe2fsprogs.git Fsck does not need to linked against the ext2 libraries anymore. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index 9e9d334..621eb12 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,8 @@ +2003-04-17 Theodore Ts'o + + * Makefile.in (fsck): Fsck does not need to linked against the + ext2 libraries anymore. + 2003-04-16 Theodore Ts'o * fsck.c (main): Put stdout and stderr into non-buffered mode to diff --git a/misc/Makefile.in b/misc/Makefile.in index ec19a90..788fce7 100644 --- a/misc/Makefile.in +++ b/misc/Makefile.in @@ -106,7 +106,7 @@ dumpe2fs: $(DUMPE2FS_OBJS) $(DEPLIBS_E2P) $(DEPLIBUUID) $(CC) $(ALL_LDFLAGS) -o dumpe2fs $(DUMPE2FS_OBJS) $(LIBS_E2P) $(LIBUUID) fsck: $(FSCK_OBJS) $(DEBLIBS_BLKID) - $(CC) $(ALL_LDFLAGS) -o fsck $(FSCK_OBJS) $(LIBS) $(LIBS_BLKID) + $(CC) $(ALL_LDFLAGS) -o fsck $(FSCK_OBJS) $(LIBS_BLKID) badblocks: $(BADBLOCKS_OBJS) $(DEPLIBS) $(CC) $(ALL_LDFLAGS) -o badblocks $(BADBLOCKS_OBJS) $(LIBS)