From: Tom Tromey Date: Wed, 7 Apr 1999 10:02:48 +0000 (+0000) Subject: * automake.in (handle_texinfo): Indentation fixes. X-Git-Tag: last-merge-into-user-dep-gen-branch~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d21d18bdd9b04c54cd823bc69d010b6572c03ac;p=thirdparty%2Fautomake.git * automake.in (handle_texinfo): Indentation fixes. --- diff --git a/ChangeLog b/ChangeLog index 8367d9577..03cef89ec 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 1f3197123..7ef4bb226 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'); + } } }