summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2003-04-17 21:58:27 -0400
committerTheodore Ts'o <tytso@mit.edu>2003-04-17 21:58:27 -0400
commit814dc05673af0e879ba073c9010b78266f832bf6 (patch)
tree8b1363dc5d1b949d73f9c4563163d5fb387eee4f
parent12dd69f5ff95517037736f39104262d720d1edee (diff)
downloade2fsprogs-814dc05673af0e879ba073c9010b78266f832bf6.tar.gz
Fsck does not need to linked against the ext2 libraries anymore.
-rw-r--r--misc/ChangeLog5
-rw-r--r--misc/Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/misc/ChangeLog b/misc/ChangeLog
index 9e9d3342..621eb12c 100644
--- a/misc/ChangeLog
+++ b/misc/ChangeLog
@@ -1,3 +1,8 @@
+2003-04-17 Theodore Ts'o <tytso@mit.edu>
+
+ * Makefile.in (fsck): Fsck does not need to linked against the
+ ext2 libraries anymore.
+
2003-04-16 Theodore Ts'o <tytso@mit.edu>
* fsck.c (main): Put stdout and stderr into non-buffered mode to
diff --git a/misc/Makefile.in b/misc/Makefile.in
index ec19a90c..788fce74 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)