libtool: Autoconf and LTLIBOBJS

1 
1 5.5.2 Autoconf and 'LTLIBOBJS'
1 ------------------------------
1 
1 People used to add code like the following to their 'configure.ac':
1 
1      LTLIBOBJS=`echo "$LIBOBJS" | sed 's/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'`
1      AC_SUBST([LTLIBOBJS])
1 
1 This is no longer required (since Autoconf 2.54), and doesn't take
1 Automake's deansification support into account either, so doesn't work
1 correctly even with ancient Autoconfs!
1 
1    Provided you are using a recent (2.54 or better) incarnation of
1 Autoconf, the call to 'AC_OUTPUT' takes care of setting 'LTLIBOBJS' up
1 correctly, so you can simply delete such snippets from your
1 'configure.ac' if you had them.
1