From: Tom Tromey Date: Fri, 11 Oct 1996 05:24:59 +0000 (+0000) Subject: gettext fixlet X-Git-Tag: v1.10.2~3360 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6323e3b7e1b1fc8cf90f4ccf65f881d61236983;p=platform%2Fupstream%2Fautomake.git gettext fixlet --- diff --git a/ChangeLog b/ChangeLog index 8035d01..eeec7bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Thu Oct 10 16:12:38 1996 Tom Tromey + * automake.in (handle_gettext): Moved check for SUBDIRS and + ABOUT-NLS here. + * automake.in (handle_configure): Run mkinstalldirs under $(SHELL). (handle_yacc_lex_cxx): Run interlock under $(SHELL). diff --git a/THANKS b/THANKS index 3aeb619..e8a3301 100644 --- a/THANKS +++ b/THANKS @@ -26,6 +26,7 @@ Mark Galassi Markku Rossi Noah Friedman Nyul Laszlo +Per Bothner Steve M. Robbins Thomas Morgan Tom Tromey diff --git a/automake.in b/automake.in index 586534e..81cf79d 100755 --- a/automake.in +++ b/automake.in @@ -1917,17 +1917,6 @@ sub handle_dependencies # Handle subdirectories. sub handle_subdirs { - if (! &variable_defined ('SUBDIRS')) - { - &am_conf_error - ("ud_GNU_GETTEXT in configure.in but SUBDIRS not defined") - if $seen_gettext && $relative_dir eq '.'; - return; - } - - &require_file_with_conf_line ($ac_gettext_line, $FOREIGN, 'ABOUT-NLS') - if $seen_gettext; - return if ! &variable_defined ('SUBDIRS'); # Make sure each directory mentioned in SUBDIRS actually exists. @@ -2154,6 +2143,16 @@ sub handle_gettext { return if ! $seen_gettext || $relative_dir ne '.'; + if (! &variable_defined ('SUBDIRS')) + { + &am_conf_error + ("ud_GNU_GETTEXT in configure.in but SUBDIRS not defined"); + return; + } + + &require_file_with_conf_line ($ac_gettext_line, $FOREIGN, 'ABOUT-NLS') + if $seen_gettext; + if (&variable_defined ('SUBDIRS')) { &am_line_error