# HG changeset patch # User Christian Hammond # Date 1033251177 0 # Node ID 1496be1c345cdd67129ad8fc1b2f1d54c2aa8ad8 # Parent 154c4a9d9b6de6e72b19dc112b5c13139e1c84f3 [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 diff -r 154c4a9d9b6d -r 1496be1c345c autogen.sh --- 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;