From: Tom Tromey Date: Sat, 23 Dec 2000 01:06:03 +0000 (+0000) Subject: From Raja R Harinath: X-Git-Tag: Release-1-4b~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22f6fae1bea072a2158a1ed6f508a73dbdb174be;p=thirdparty%2Fautomake.git From Raja R Harinath: * automake.in (libtoolize_sometimes): New global. (initialize_global_constants): Added libtoolize_sometimes to common_files. --- diff --git a/ChangeLog b/ChangeLog index e99fb2fce..8fa293491 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2000-12-22 Tom Tromey + From Raja R Harinath: + * automake.in (libtoolize_sometimes): New global. + (initialize_global_constants): Added libtoolize_sometimes to + common_files. + * m4/depend.m4 (AM_SET_DEPDIR): Ignore errors when running rmdir. * m4/depend.m4 (AM_SET_DEPDIR): Remove .deps directory when done. diff --git a/automake.in b/automake.in index dd6be09d3..51034f85c 100755 --- a/automake.in +++ b/automake.in @@ -194,6 +194,9 @@ $libtool_line = 0; # Files installed by libtoolize. @libtoolize_files = ('ltmain.sh', 'config.guess', 'config.sub'); +# ltconfig appears here for compatibility with old versions of libtool. +@libtoolize_sometimes = ('ltconfig', 'ltcf-c.sh', 'ltcf-cxx.sh', + 'ltcf-gcj.sh'); # TRUE if we've seen AM_MAINTAINER_MODE. $seen_maint_mode = 0; @@ -6659,7 +6662,7 @@ sub initialize_global_constants 'texinfo.tex', "ansi2knr.c", "ansi2knr.1", 'elisp-comp', # ltconfig appears here for compatibility with old versions # of libtool. - 'ylwrap', 'acinclude.m4', @libtoolize_files, 'ltconfig', + 'ylwrap', 'acinclude.m4', @libtoolize_files, @libtoolize_sometimes, 'missing', 'depcomp', 'compile', 'py-compile' );