summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo J. A. M. Carneiro <gustavo@users.sourceforge.net>2003-06-20 00:13:25 +0000
committerMalcolm Tredinnick <malcolm@src.gnome.org>2003-06-20 00:13:25 +0000
commitaf3face3d2251f168bb527c35ad1bd1ad19a8dd2 (patch)
tree0b134d3f0fbcfa287be030831f1229ff39338f62
parente16ea58db92e05b9720acdc6992175ec346dfc91 (diff)
downloadshared-mime-info-af3face3d2251f168bb527c35ad1bd1ad19a8dd2.tar.gz
Inserted missing "cd $dirname" to effectively process subdirectories,
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
-rw-r--r--macros2/ChangeLog9
-rw-r--r--macros2/autogen.sh1
2 files changed, 10 insertions, 0 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog
index 836aac78..3db11484 100644
--- a/macros2/ChangeLog
+++ b/macros2/ChangeLog
@@ -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.
diff --git a/macros2/autogen.sh b/macros2/autogen.sh
index 560f374d..a8cfa1f0 100644
--- a/macros2/autogen.sh
+++ b/macros2/autogen.sh
@@ -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..."