* automake.in (handle_dist): Add `;\' to end of distcheck-hook
line.
(scan_one_configure_file): In LIBOBJS, recognize `$ac_objext' as
legitimate ending. Fixes libobj9.test.
1999-03-11 Tom Tromey <tromey@cygnus.com>
+ From Jim Meyering:
+ * automake.in (handle_dist): Add `;\' to end of distcheck-hook
+ line.
+ (scan_one_configure_file): In LIBOBJS, recognize `$ac_objext' as
+ legitimate ending. Fixes libobj9.test.
+
From Ralf Corsepius. Fixes lex3.test.
* automake.in (lang_yacc_finish): Include `.' in name pushed onto
maintainer-clean list.
dc_install_base=`cd $(distdir)/=inst && pwd`; \\'
. (&target_defined ('distcheck-hook')
? ("\t\$(MAKE) \$(AM_MAKEFLAGS)"
- . " distcheck-hook")
+ . " distcheck-hook; \\")
: '')
. '
cd $(distdir)/=build \\
{
foreach $libobj_iter (split (' ', $1))
{
- if ($libobj_iter =~ /^(.*)\.o(bj)?$/)
+ if ($libobj_iter =~ /^(.*)\.o(bj)?$/
+ || $libobj_iter =~ /^(.*)\.\$ac_objext$/
+ || $libobj_iter =~ /^(.*)\.\$\{ac_objext\}$/)
{
$libsources{$1 . '.c'} = 1;
}