On 11/13/2013 10:14 AM, Michael Haubenwallner wrote: > Hi all, > > as you might or might not be aware of, elibtoolize() originally was for applying > patches to ltmain.sh, but now also applies patches to configure scripts. > Attached patch drops that wild guesses, explicitly applying configure-patches to > configure scripts, while still explicitly applying ltconf.sh-patches to ltconf.sh. One update to this patch, to run elibtoolize once per directory again, even if both filenames are in that same directory: - set -- $(find "${S}" '(' -name ltmain.sh -o -name configure ')' -printf '%h ') + set -- $(find "${S}" '(' -name ltmain.sh -o -name configure ')' -printf '%h\n' | sort -u) > WDYT? Without objections, I plan to commit this patch by the end of next week. Thank you! /haubi/