diff options
author | Theodore Ts'o <tytso@mit.edu> | 2009-10-04 16:29:17 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-10-04 16:29:17 -0400 |
commit | f790bc33b20e5c1a9d357c41cb2c1b7ea486f98c (patch) | |
tree | b46d3242f210947da0d2ad9e43a095188ba66115 /lib/ext2fs | |
parent | a321afa8b7baca0ff90e06c1351b2054e61e11ee (diff) | |
download | e2fsprogs-f790bc33b20e5c1a9d357c41cb2c1b7ea486f98c.tar.gz |
libext2fs: Always build file_io.c
Commit 1d9b818: dumpe2fs: Print more information about the inline journal
caused dumpe2fs to use ext2fs_file_open2(). Previously the file_io
functions were only used by debugfs, so if debugfs was disabled,
file_io was not built. Now that dumpe2fs is also using file_io, we
need to build it unconditionally.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'lib/ext2fs')
-rw-r--r-- | lib/ext2fs/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index 3712c543..a3501813 100644 --- a/lib/ext2fs/Makefile.in +++ b/lib/ext2fs/Makefile.in @@ -7,8 +7,7 @@ INSTALL = @INSTALL@ @MCONFIG@ -@DEBUGFS_CMT@DEBUGFS_LIB_OBJS = bb_compat.o fileio.o \ -@DEBUGFS_CMT@ inode_io.o namei.o write_bb_file.o +@DEBUGFS_CMT@DEBUGFS_LIB_OBJS = bb_compat.o inode_io.o namei.o write_bb_file.o MK_CMDS= _SS_DIR_OVERRIDE=../ss ../ss/mk_cmds @@ -41,6 +40,7 @@ OBJS= $(DEBUGFS_LIB_OBJS) $(RESIZE_LIB_OBJS) $(E2IMAGE_LIB_OBJS) \ expanddir.o \ ext_attr.o \ extent.o \ + fileio.o \ finddev.o \ flushb.o \ freefs.o \ |