On Jan 26, 2013, at 7:30 PM, Chris J. Breisch wrote:
ln -sfv libblkid.so.1 /tools/lib64/libblkid.so ln -sfv libuuid.so.1 /tools/lib64/libuuid.so
These do get created, but in the wrong place. Util-linux is installing some of the install into /tools/tools/lib64 This is cause of the way they are setting up exec_prefix. The only way to get it right was to use this configure for util-linux:CC="${CC} ${BUILD64}" PKG_CONFIG=true ./configure --prefix=/ tools --exec-prefix='' --build=${CLFS_HOST} --host=${CLFS_TARGET} --libdir=/tools/lib64 --disable-makeinstall-chown --disable-login --disable-su --config-cache --bindir=/tools/bin --sbindir=/tools/sbin --libdir=/tools/lib64
make usrsbin_execdir=/tools/sbin usrbin_execdir=/tools/bin -j 15 make usrsbin_execdir=/tools/sbin usrbin_execdir=/tools/bin install And then e2fsprogs will behave properly. Any input or better way to do this? Sincerely, William Harrington
_______________________________________________ Clfs-dev mailing list [email protected] http://lists.cross-lfs.org/listinfo.cgi/clfs-dev-cross-lfs.org
