Details on this package are located in Section 10.16.2, “Contents of E2fsprogs.”
The E2fsprogs package contains the utilities for handling the ext2 file system. It also supports the ext3 journaling file system.
Change the library directory to lib32:
sed -i '/libdir=.*\/lib/s@/lib@/lib32@g' configure
The E2fsprogs documentation recommends that the package be built in a subdirectory of the source tree:
mkdir -v build cd build
Prepare E2fsprogs for compilation:
CC="gcc ${BUILDN32}" ../configure --prefix=/usr \
--with-root-prefix="" --enable-elf-shlibs --disable-evms \
--with-cc="gcc ${BUILDN32}"
Compile the libraries:
make libs
Install the static libraries and headers:
make install-libs
Details on this package are located in Section 10.16.2, “Contents of E2fsprogs.”