* automake.in (create, keyed_aclocal_warning): Delete, unused.
authorAlexandre Duret-Lutz <adl@gnu.org>
Tue, 2 Jul 2002 09:27:00 +0000 (09:27 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Tue, 2 Jul 2002 09:27:00 +0000 (09:27 +0000)
ChangeLog
automake.in

index 0012ad7..04b57e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * automake.in (create, keyed_aclocal_warning): Delete, unused.
+
 2002-07-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * automake.in (ac_macro_for_var): Add YACC.
index 2c27ed3..5a82e7f 100755 (executable)
@@ -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)
 # -----------------------------------------------