]> sourceware.org Git - automake.git/commitdiff
More bug fixes
authorTom Tromey <tromey@redhat.com>
Mon, 1 Apr 1996 16:52:51 +0000 (16:52 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 1 Apr 1996 16:52:51 +0000 (16:52 +0000)
ChangeLog
TODO
automake.in

index 419d4fcf2e4fc3aa9f6f3f9fa8bb02ab543f16c1..03e43bd35f2b798775fae7921aa807dd3f365b31 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
 Thu Mar 28 08:33:21 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
        * automake.in (require_conf_file_with_conf_line): Yet another
diff --git a/TODO b/TODO
index c40c77a7813fb10cc21e58195941147adadc8b8f..0a84bf440cd5f2550120113064c06a28ad0615c1 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,4 +1,5 @@
 Priorities for release:
+* Fix all mkinstalldirs invocations
 * Add support for libtool
 
 Other priorities:
index 06a9607fe431bdcf01f3f763b1e83e7f3dd3f5c5..460a57e2b6474aa98a2b9e5631558679aba029e0 100755 (executable)
@@ -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, '', @_);
 }
 
This page took 0.033431 seconds and 5 git commands to generate.