Mon Apr 1 09:47:44 1996 Tom Tromey <tromey@creche.cygnus.com>
- * automake.in (require_file_with_conf_line): Look in
- $relative_dir, not ".".
- (require_file_with_line): Ditto.
- (require_file): Ditto.
+ * automake.in (require_file_internal): If $dir is ".",then look in
+ relative directory.
Thu Mar 28 08:33:21 1996 Tom Tromey <tromey@creche.cygnus.com>
Make a definition of the term "source"
+Better docs for foreign/gnits. Explain how foreign relaxes
+constraints.
+
================================================================
Libraries:
$found_it = 0;
foreach $dir (@require_file_paths)
{
- $fullfile = $dir . "/" . $file;
+ if ($dir eq '.')
+ {
+ $fullfile = $relative_dir . "/" . $file;
+ }
+ else
+ {
+ $fullfile = $dir . "/" . $file;
+ }
# Use different name for "error filename". Otherwise on
# an error the bad file will be reported as eg
# configure.in, not the current Makefile.am.
sub require_file_with_conf_line
{
- @require_file_paths = $relative_dir;
+ @require_file_paths = '.';
&require_file_internal (1, @_);
}
sub require_file_with_line
{
- @require_file_paths = $relative_dir;
+ @require_file_paths = '.';
&require_file_internal (0, @_);
}
sub require_file
{
- @require_file_paths = $relative_dir;
+ @require_file_paths = '.';
&require_file_internal (0, '', @_);
}