Hello Rhys, * Rhys Ulerich wrote on Fri, Mar 11, 2011 at 09:03:06PM CET: > Can anyone recommend either a clean way to perform the ltmain.sh > surgery at bootstrap?
Most needed surgery at bootstrap can be done by having a ./bootstrap script that contains something like #! /bin/sh autoreconf -vi patch -p0 <<\EOF --- ltmain.sh~ +++ ltmain.sh ... unidiff ... EOF because it will stop modifying code once it is fixed. Be sure to check exit status semantics of patch. The actual issue should be fixed in Libtool too, of course. Thanks, Ralf