- valac argument matching more precise, to avoid garbage in DIST_COMMON.
+* Miscellaneous changes
+
+ - Removed function up_to_date_p in lib/Automake/FileUtils.pm.
+ We believe this function is completely unused.
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
New in 1.16.2:
&dir_has_case_matching_file &reset_dir_cache
&set_dir_cache_file);
+=over 4
+
=item C<find_file ($file_name, @include)>
Return the first path for a C<$file_name> in the C<include>s.
}
-=item C<up_to_date_p ($file, @dep)>
-
-Is C<$file> more recent than C<@dep>?
-
-=cut
-
-# $BOOLEAN
-# &up_to_date_p ($FILE, @DEP)
-# ---------------------------
-sub up_to_date_p ($@)
-{
- my ($file, @dep) = @_;
- my $mtime = mtime ($file);
-
- foreach my $dep (@dep)
- {
- if ($mtime < mtime ($dep))
- {
- verb "up_to_date ($file): outdated: $dep";
- return 0;
- }
- }
-
- verb "up_to_date ($file): up to date";
- return 1;
-}
-
-
=item C<handle_exec_errors ($command, [$expected_exit_code = 0], [$hint])>
Display an error message for C<$command>, based on the content of
if exists $_directory_cache{$dirname};
}
+=back
+
1; # for require