diff options
author | Mike Frysinger | 2005-10-05 00:52:37 +0000 |
---|---|---|
committer | Mike Frysinger | 2005-10-05 00:52:37 +0000 |
commit | dc2510327b43ab5ce18c1752304015fad4663bad (patch) | |
tree | 15c88bd781118b73e9a0c68423c49ca7129d08e2 /e2fsprogs | |
parent | 23fedb3ad4bce0f528fa39e44a9695a6fa5d2ef1 (diff) | |
download | busybox-dc2510327b43ab5ce18c1752304015fad4663bad.zip busybox-dc2510327b43ab5ce18c1752304015fad4663bad.tar.gz |
as Tito points out, e2fsck and fsck need more dependencies
Diffstat (limited to 'e2fsprogs')
-rw-r--r-- | e2fsprogs/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsprogs/Makefile.in b/e2fsprogs/Makefile.in index 94eeca9..0353a16 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) |