From: Alexandre Duret-Lutz Date: Tue, 2 Jul 2002 09:27:00 +0000 (+0000) Subject: * automake.in (create, keyed_aclocal_warning): Delete, unused. X-Git-Tag: Release-1-6b~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb4b0671d546f466c81c73126d9989f7329ebc4b;p=thirdparty%2Fautomake.git * automake.in (create, keyed_aclocal_warning): Delete, unused. --- diff --git a/ChangeLog b/ChangeLog index 0012ad768..04b57e006 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-07-02 Alexandre Duret-Lutz + + * automake.in (create, keyed_aclocal_warning): Delete, unused. + 2002-07-01 Alexandre Duret-Lutz * automake.in (ac_macro_for_var): Add YACC. diff --git a/automake.in b/automake.in index 2c27ed39e..5a82e7f07 100755 --- a/automake.in +++ b/automake.in @@ -8305,17 +8305,6 @@ sub set_strictness ################################################################ -# Ensure a file exists. -sub create -{ - use IO::File; - my ($file) = @_; - - my $touch = new IO::File (">> $file"); - $touch->close; -} - - # Glob something. Do this to avoid indentation screwups everywhere we # want to glob. Gross! sub my_glob @@ -8401,13 +8390,6 @@ sub file_warning ($@) $SIG{'__WARN__'} = $sig; } -# Tell user where our aclocal.m4 is, but only once. -sub keyed_aclocal_warning ($) -{ - my ($key) = @_; - warn "$me: macro `$key' can be generated by `aclocal'\n"; -} - # INTEGER # require_variables ($WHERE, $REASON, @VARIABLES) # -----------------------------------------------