aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-10-05 00:52:37 +0000
committerMike Frysinger <vapier@gentoo.org>2005-10-05 00:52:37 +0000
commitdc2510327b43ab5ce18c1752304015fad4663bad (patch)
tree15c88bd781118b73e9a0c68423c49ca7129d08e2
parent23fedb3ad4bce0f528fa39e44a9695a6fa5d2ef1 (diff)
downloadbusybox-dc2510327b43ab5ce18c1752304015fad4663bad.tar.gz
as Tito points out, e2fsck and fsck need more dependencies
-rw-r--r--e2fsprogs/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsprogs/Makefile.in b/e2fsprogs/Makefile.in
index 94eeca98d..0353a161f 100644
--- a/e2fsprogs/Makefile.in
+++ b/e2fsprogs/Makefile.in
@@ -41,8 +41,8 @@ UUID_OBJS := $(patsubst %.c,%.o, $(UUID_SRCS))
E2FSPROGS-:=
E2FSPROGS-$(CONFIG_CHATTR) += chattr.o $(E2P_OBJS)
-E2FSPROGS-$(CONFIG_E2FSCK) += e2fsck.o util.o $(BLKID_OBJS)
-E2FSPROGS-$(CONFIG_FSCK) += fsck.o base_device.o
+E2FSPROGS-$(CONFIG_E2FSCK) += e2fsck.o util.o $(BLKID_OBJS) $(EXT2FS_OBJS) $(UUID_OBJS)
+E2FSPROGS-$(CONFIG_FSCK) += fsck.o base_device.o $(BLKID_OBJS) $(UUID_OBJS)
E2FSPROGS-$(CONFIG_LSATTR) += lsattr.o $(E2P_OBJS)
E2FSPROGS-$(CONFIG_MKE2FS) += mke2fs.o util.o $(E2P_OBJS) $(BLKID_OBJS) $(EXT2FS_OBJS) $(UUID_OBJS)
E2FSPROGS-$(CONFIG_TUNE2FS) += tune2fs.o util.o $(E2P_OBJS) $(BLKID_OBJS) $(EXT2FS_OBJS) $(UUID_OBJS)