Jens Petersen <[EMAIL PROTECTED]> writes: > It is my understanding that relinking is not needed on elf > or Linux binary platforms. Further relinking actually gets > in the way when making binary packages, since "make install" > is usually installing into a buildroot.
The easiest way I know of to fix the buildroot problem is to configure your package with --prefix set to the eventual install location, but to use gcc's LIBRARY_PATH to keep libtool from choking on the "make install" to the temp dir. i.e.: LIBRARY_PATH=$(pwd)/debian/tmp make ... install or similar. Hope this helps. -- Rob Browning rlb @defaultvalue.org, @linuxdevel.com, and @debian.org Previously @cs.utexas.edu GPG=1C58 8B2C FB5E 3F64 EA5C 64AE 78FE E5FE F0CB A0AD _______________________________________________ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool
