From: Tom Tromey Date: Mon, 1 Apr 1996 16:52:51 +0000 (+0000) Subject: More bug fixes X-Git-Tag: Release-0-32~19 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=3472abdc2cbcfffb83a3e5e0c63518be1b9b2ebd;p=automake.git More bug fixes --- diff --git a/ChangeLog b/ChangeLog index 419d4fcf..03e43bd3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon Apr 1 09:47:44 1996 Tom Tromey + + * automake.in (require_file_with_conf_line): Look in + $relative_dir, not ".". + (require_file_with_line): Ditto. + (require_file): Ditto. + Thu Mar 28 08:33:21 1996 Tom Tromey * automake.in (require_conf_file_with_conf_line): Yet another diff --git a/TODO b/TODO index c40c77a7..0a84bf44 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,5 @@ Priorities for release: +* Fix all mkinstalldirs invocations * Add support for libtool Other priorities: diff --git a/automake.in b/automake.in index 06a9607f..460a57e2 100755 --- a/automake.in +++ b/automake.in @@ -2713,19 +2713,19 @@ sub require_file_internal # configure.in, not the current Makefile.am. sub require_file_with_conf_line { - @require_file_paths = '.'; + @require_file_paths = $relative_dir; &require_file_internal (1, @_); } sub require_file_with_line { - @require_file_paths = '.'; + @require_file_paths = $relative_dir; &require_file_internal (0, @_); } sub require_file { - @require_file_paths = '.'; + @require_file_paths = $relative_dir; &require_file_internal (0, '', @_); }