From 814dc05673af0e879ba073c9010b78266f832bf6 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 17 Apr 2003 21:58:27 -0400 Subject: [PATCH] Fsck does not need to linked against the ext2 libraries anymore. --- misc/ChangeLog | 5 +++++ misc/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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) -- 1.8.3.1