Inserted missing "cd $dirname" to effectively process subdirectories,
authorGustavo J. A. M. Carneiro <gustavo@users.sourceforge.net>
Fri, 20 Jun 2003 00:13:25 +0000 (00:13 +0000)
committerMalcolm Tredinnick <malcolm@src.gnome.org>
Fri, 20 Jun 2003 00:13:25 +0000 (00:13 +0000)
2003-06-19  Gustavo J. A. M. Carneiro  <gustavo@users.sourceforge.net>

* autogen.sh: Inserted missing "cd $dirname" to effectively
process subdirectories, since all it was doing was to process the
toplevel dir multiple times.

[Editor's note: also reported with patch by Elijah Newren in bug
#115481.]

svn path=/trunk/; revision=2906

macros2/ChangeLog
macros2/autogen.sh

index 836aac7..3db1148 100644 (file)
@@ -1,3 +1,12 @@
+2003-06-19  Gustavo J. A. M. Carneiro  <gustavo@users.sourceforge.net>
+
+       * autogen.sh: Inserted missing "cd $dirname" to effectively
+       process subdirectories, since all it was doing was to process the
+       toplevel dir multiple times.
+
+       [Editor's note: also reported with patch by Elijah Newren in bug
+       #115481.]
+
 2003-05-21  Malcolm Tredinnick <malcolm@commsecure.com.au>
 
        * autogen.sh: Ignore {arch} subdirectories. Fixes bug #113327.
index 560f374..a8cfa1f 100644 (file)
@@ -319,6 +319,7 @@ for configure_ac in $configure_files; do
        echo skipping $dirname -- flagged as no auto-gen
     else
        printbold "Processing $configure_ac"
+       cd $dirname
 
        aclocalinclude="$ACLOCAL_FLAGS"
        printbold "Running $ACLOCAL..."