From: Theodore Ts'o Date: Mon, 17 May 2010 23:32:19 +0000 (-0400) Subject: Always build namei.o so that building with "configure --disable-debugfs" works X-Git-Tag: v1.41.12~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d452afe4757fdac1bd92fd6fcc09091eff181bd;p=thirdparty%2Fe2fsprogs.git Always build namei.o so that building with "configure --disable-debugfs" works namei.o is also needed by e2initrd_helper. Long term, if we care about reduced e2fsprogs builds, we need a more general solution for deciding what .o files are needed for a particular build. Given that install floppies are going (gone?) the way the dodo bird, we probably don't care, though. Addresses-Sourceforge-Bug: #2911433 Signed-off-by: "Theodore Ts'o" --- diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index a3501813d..a71d12cf8 100644 --- a/lib/ext2fs/Makefile.in +++ b/lib/ext2fs/Makefile.in @@ -7,7 +7,7 @@ INSTALL = @INSTALL@ @MCONFIG@ -@DEBUGFS_CMT@DEBUGFS_LIB_OBJS = bb_compat.o inode_io.o namei.o write_bb_file.o +@DEBUGFS_CMT@DEBUGFS_LIB_OBJS = bb_compat.o inode_io.o write_bb_file.o MK_CMDS= _SS_DIR_OVERRIDE=../ss ../ss/mk_cmds @@ -61,6 +61,7 @@ OBJS= $(DEBUGFS_LIB_OBJS) $(RESIZE_LIB_OBJS) $(E2IMAGE_LIB_OBJS) \ lookup.o \ mkdir.o \ mkjournal.o \ + namei.o \ native.o \ newdir.o \ openfs.o \