William A. Rowe, Jr. wrote: > > Anyone see a better alternative? > > --- Makefile.in (revision 486457) > +++ Makefile.in (working copy) > @@ -93,8 +93,10 @@ > @test -d $(DESTDIR)$(installbuilddir) || $(MKINSTALLDIRS) > $(DESTDIR)$(installbuilddir) > @cp $(top_srcdir)/build/*.mk $(DESTDIR)$(installbuilddir); \ > cp build/*.mk $(DESTDIR)$(installbuilddir); \ > - sed 's#LIBTOOL = \(.*\)#LIBTOOL = $(SHELL) $(installbuilddir)/libtool > $(LTFLAGS)#' \ > + if [ -f srclib/apr/libtool ]; then \ > + sed 's#i^LIBTOOL = \(.*\)#LIBTOOL = $(SHELL) > $(installbuilddir)/libtool $(LTFLAGS)#' \
FYI - the leading 'i' in s#i^LIBTOOL was a typo, it's s#^LIBTOOL instead. Although I mostly posted the patch for comments and feedback at this point, I just finished actually testing and it looks like it will solve the 98/2 cases.