]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* bin/autoreconf.in (autoreconf): Be sure to accumulate the
authorAkim Demaille <akim@epita.fr>
Fri, 5 Apr 2002 09:42:48 +0000 (09:42 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 5 Apr 2002 09:42:48 +0000 (09:42 +0000)
directories when descending in a SUBDIRS.
Reported by Ezra Peisach.

ChangeLog
bin/autoreconf.in

index df99423eeff54fd8c8bf07e15b2a7932b567cd41..257a952ac2407c196bfceb4c553f9be9f85a1567 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-04-05  Akim Demaille  <akim@epita.fr>
+
+       * bin/autoreconf.in (autoreconf): Be sure to accumulate the
+       directories when descending in a SUBDIRS.
+       Reported by Ezra Peisach.
+
 2002-04-04  Andreas Schwab  <schwab@suse.de>
 
        * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
index befe103b58b5279517ccd94674f41565f90a804b..3631091fe2bdf06f7624f2284ab1d06bec1206d1 100644 (file)
@@ -338,7 +338,7 @@ sub autoreconf ($)
       if (-d)
        {
          verbose "$configure_ac: subdirectory $_ to autoreconf";
-         push @ARGV, $_;
+         push @ARGV, catfile ($directory, $_);
        }
       else
        {