Thu Mar 27 17:28:47 1997 Tom Tromey <tromey@cygnus.com>
+ * automake.in (scan_one_configure_file): Explicitly avoid
+ INSTALL_SCRIPT to avoid defining it twice.
+
* header-vars.am: Change _INSTALL variable definitions to `true'.
Updated all users to put `@' before invocation.
}
# Explicitly avoid ANSI2KNR -- we AC_SUBST that in protos.m4,
- # but later define it elsewhere. This is pretty hacky.
- if (/$AC_SUBST_PATTERN/o && $1 ne 'ANSI2KNR')
+ # but later define it elsewhere. This is pretty hacky. We
+ # also explicitly avoid INSTALL_SCRIPT because it is defined
+ # in header-vars.am. FIXME.
+ if (/$AC_SUBST_PATTERN/o
+ && $1 ne 'ANSI2KNR'
+ && $1 ne 'INSTALL_SCRIPT')
{
$configure_vars{$1} = 1;
}