diff options
author | jacob berkman <jacob@ximian.com> | 2001-10-24 22:17:05 +0000 |
---|---|---|
committer | Jacob Berkman <jberkman@src.gnome.org> | 2001-10-24 22:17:05 +0000 |
commit | 2791868fb8f39c4e0aea730f691671c68dec4a84 (patch) | |
tree | 75f4faa59f7444bdac8f7129201c130ddb4cb17a | |
parent | f7127f4a7b6fde1d005e98d635f2932aee8e3274 (diff) | |
download | shared-mime-info-2791868fb8f39c4e0aea730f691671c68dec4a84.tar.gz |
do a test that is not only always false, but works with autoconf 2.52 and
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
svn path=/trunk/; revision=2057
-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 47ee6107..241f9ada 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 abf6533f..43f9dbc4 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" |