changeset 3566:1496be1c345c

[gaim-migrate @ 3661] Yay for broken stuff. Thanks Ethan. I just hope we find a better way of dealing with this problem. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 28 Sep 2002 22:12:57 +0000
parents 154c4a9d9b6d
children ec86e76d0427
files autogen.sh
diffstat 1 files changed, 10 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/autogen.sh	Sat Sep 28 21:39:45 2002 +0000
+++ b/autogen.sh	Sat Sep 28 22:12:57 2002 +0000
@@ -57,9 +57,16 @@
 echo "Running libtoolize, please ignore non-fatal messages...."
 echo n | libtoolize --copy --force || exit;
 
-if test -d /usr/local/share/aclocal ; then
-	ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I /usr/local/share/aclocal"
-fi
+# Add other directories to this list if people continue to experience
+# brokennesses ...  Obviously the real answer is for them to fix it
+# themselves, but for Luke's sake we have this.
+for dir in "/usr/local/share/aclocal" \
+           "/opt/gnome-1.4/share/aclocal"
+do
+	if test -d $dir ; then
+		ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $dir"
+	fi
+done
 
 aclocal -I m4 $ACLOCAL_FLAGS || exit;
 autoheader || exit;