diff options
author | Richard Boulton <richard@tartarus.org> | 2002-02-04 22:42:22 +0000 |
---|---|---|
committer | Richard Boulton <richard@tartarus.org> | 2002-02-04 22:42:22 +0000 |
commit | 8ae48af8fb93eed7f74cd4b73b41a34c66777fce (patch) | |
tree | 094b099b29654a7a004cae2b65ac8e849b471c1a /configure.ac | |
parent | fc665b84c7c6c66bc39f25ed4484033ce1fef284 (diff) |
Revert aclocal invocation to do cat m4/*.m4 > acinclude.m4 beforehand, rather than adding m4/ to aclocal search path....
Original commit message from CVS:
Revert aclocal invocation to do cat m4/*.m4 > acinclude.m4 beforehand,
rather than adding m4/ to aclocal search path. Shouldn't cause errors when
macros are already present on system, because macros in acinclude.m4 are
used in preference.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d5e947ff..7ed488bb 100644 --- a/configure.ac +++ b/configure.ac @@ -38,7 +38,7 @@ GST_LIBVERSION=$GST_CURRENT:$GST_REVISION:$GST_AGE AM_INIT_AUTOMAKE($PACKAGE, $VERSION) dnl Add parameters for aclocal dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL) -ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" +ACLOCAL="cat m4/*.m4 >acinclude.m4;$ACLOCAL $ACLOCAL_FLAGS" AC_SUBST(GST_VERSION_MAJOR) AC_SUBST(GST_VERSION_MINOR) |