<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Jan 26, 2013, at 7:30 PM, Chris J. Breisch wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">ln -sfv libblkid.so.1 /tools/lib64/libblkid.so<br>ln -sfv libuuid.so.1 /tools/lib64/libuuid.so</span></blockquote></div><br><div>These do get created, but in the wrong place.</div><div><br></div><div>Util-linux is installing some of the install into /tools/tools/lib64</div><div><br></div><div>This is cause of the way they are setting up exec_prefix.</div><div><br></div><div>The only way to get it right was to use this configure for util-linux:</div><div><br></div><div> 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</div><div>make usrsbin_execdir=/tools/sbin usrbin_execdir=/tools/bin -j 15</div><div>make usrsbin_execdir=/tools/sbin usrbin_execdir=/tools/bin install</div><div><br></div><div>And then e2fsprogs will behave properly.</div><div>Any input or better way to do this?</div><div><br></div><div>Sincerely,</div><div><br></div><div>William Harrington</div></body></html>