diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | autogen.sh | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2005-04-12 Carl Worth <cworth@cworth.org> + * autogen.sh: Replace errant use of aclocal with $ACLOCAL, as + reported by Martin Hedenfalk. Closes bug #3000. + +2005-04-12 Carl Worth <cworth@cworth.org> + * src/cairo-pattern.c: * src/cairo-surface.c: (_cairo_surface_init): Default to CAIRO_FILTER_GOOD rather than CAIRO_FILTER_BEST. diff --git a/autogen.sh b/autogen.sh index f834cfed1..ae8acc606 100755 --- a/autogen.sh +++ b/autogen.sh @@ -93,7 +93,7 @@ else fi if test -z "$ACLOCAL_FLAGS"; then - acdir=`aclocal --print-ac-dir` + acdir=`$ACLOCAL --print-ac-dir` if [ ! -f $acdir/pkg.m4 ]; then echo "$ARGV0: Error: Could not find pkg-config macros." echo " (Looked in $acdir/pkg.m4)" |