From: Tom Tromey Date: Wed, 7 Apr 1999 10:02:29 +0000 (+0000) Subject: * automake.in (handle_texinfo): Indentation fixes. X-Git-Tag: last-merge-into-user-dep-gen-branch~42 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=af6db0100ceb72b04e3eea3e1843e60547233946;p=automake.git * automake.in (handle_texinfo): Indentation fixes. --- diff --git a/ChangeLog b/ChangeLog index 8367d957..03cef89e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-04-07 Tom Tromey + + * automake.in (handle_texinfo): Indentation fixes. + 1999-04-07 Alexandre Oliva * automake.in (value_to_list): Skip *only* trailing backslashes. diff --git a/automake.in b/automake.in index 1f319712..7ef4bb22 100755 --- a/automake.in +++ b/automake.in @@ -2104,12 +2104,17 @@ sub handle_texinfo # Do some error checking. Note that this file is not required # when in Cygnus mode; instead we defined TEXINFO_TEX explicitly # up above. - if ($need_texi_file && ! defined $options{'no-texinfo.tex'}) { - if ($need_texi_file > 1) { - &require_conf_file_with_line ('info_TEXINFOS', $FOREIGN, 'texinfo.tex'); - } else { - &require_file_with_line ('info_TEXINFOS', $FOREIGN, 'texinfo.tex'); - } + if ($need_texi_file && ! defined $options{'no-texinfo.tex'}) + { + if ($need_texi_file > 1) + { + &require_conf_file_with_line ('info_TEXINFOS', $FOREIGN, + 'texinfo.tex'); + } + else + { + &require_file_with_line ('info_TEXINFOS', $FOREIGN, 'texinfo.tex'); + } } }