diff options
-rw-r--r-- | macros/ChangeLog | 6 | ||||
-rw-r--r-- | macros/aclocal-include.m4 | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index 47ee6107c9..241f9adabd 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,9 @@ +2001-10-24 jacob berkman <jacob@ximian.com> + + * aclocal-include.m4 (AM_ACLOCAL_INCLUDE): do a test that is not + only always false, but works with autoconf 2.52 and isn't trying + to be too smart + 2001-10-02 Darin Adler <darin@bentspoon.com> * autogen.sh: Complete intltool support. diff --git a/macros/aclocal-include.m4 b/macros/aclocal-include.m4 index abf6533fe4..43f9dbc48a 100644 --- a/macros/aclocal-include.m4 +++ b/macros/aclocal-include.m4 @@ -8,7 +8,7 @@ dnl AM_ACLOCAL_INCLUDE(macrodir) AC_DEFUN([AM_ACLOCAL_INCLUDE], [ - AM_CONDITIONAL(INSIDE_GNOME_COMMON, test x = y) + AM_CONDITIONAL(INSIDE_GNOME_COMMON, false) test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" |