aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc/acinclude.m4
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-06-08 17:59:57 +0000
committerTom Tromey <tromey@gcc.gnu.org>2001-06-08 17:59:57 +0000
commita5440f9ebf63d09b87b2adb7944c0cee52374e78 (patch)
treefdfe708fbcc4c747458439c0c70fe79ce734b64f /boehm-gc/acinclude.m4
parent7bd458aabb4805c9126408032b515ab3ce106f54 (diff)
downloadgcc-a5440f9ebf63d09b87b2adb7944c0cee52374e78.zip
gcc-a5440f9ebf63d09b87b2adb7944c0cee52374e78.tar.gz
gcc-a5440f9ebf63d09b87b2adb7944c0cee52374e78.tar.bz2
For PR bootstrap/3075:
* configure, aclocal.m4, Makefile.in: Rebuilt. * configure.in: Don't call AC_CONFIG_AUX_DIR or AC_CANONICAL_SYSTEM. * acinclude.m4 (BOEHM_CONFIGURE): Call AC_CONFIG_AUX_DIR and AC_CANONICAL_SYSTEM here. * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Use srcdir, not boehm_gc_basedir. From-SVN: r43033
Diffstat (limited to 'boehm-gc/acinclude.m4')
-rw-r--r--boehm-gc/acinclude.m48
1 files changed, 7 insertions, 1 deletions
diff --git a/boehm-gc/acinclude.m4 b/boehm-gc/acinclude.m4
index fc1e0e8..8e5f532 100644
--- a/boehm-gc/acinclude.m4
+++ b/boehm-gc/acinclude.m4
@@ -28,8 +28,14 @@ else
boehm_gc_basedir="[$]{srcdir}/$1"
fi
AC_SUBST(boehm_gc_basedir)
+AC_CONFIG_AUX_DIR($boehm_gc_basedir/..)
+if :; then :; else
+ # This overrides the previous occurrence for automake, but not for
+ # autoconf, which is exactly what we want.
+ AC_CONFIG_AUX_DIR(..)
+fi
-AC_CANONICAL_HOST
+AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(boehm-gc, 5.1, no-define)