* automake.in (handle_dist): Remove the DISTHOOK and GETTEXT
markers, no matter what.
+1999-11-09 Jim Meyering <meyering@ascend.com>
+
+ * automake.in (handle_dist): Remove the DISTHOOK and GETTEXT
+ markers, no matter what.
+
1999-11-08 Tom Tromey <tromey@cygnus.com>
* dist.am (distcheck): Put `&&' at the start of the distcheck-hook
# Rule to check whether a distribution is viable.
local ($xform) = '';
- if (! &target_defined ('distcheck-hook'))
+ if (&target_defined ('distcheck-hook'))
+ {
+ $xform .= 's/^DISTHOOK//;';
+ }
+ else
{
$xform .= 's/^DISTHOOK.*$//;';
}
- if (! $seen_gettext)
+ if ($seen_gettext)
+ {
+ $xform .= '/s^GETTEXT//;';
+ }
+ else
{
$xform .= 's/^GETTEXT.*$//;';
}