diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-08 17:59:57 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-08 17:59:57 +0000 |
commit | f4f1d408394e08eda23c361eb88200d5e7b2a56f (patch) | |
tree | fdfe708fbcc4c747458439c0c70fe79ce734b64f /boehm-gc/aclocal.m4 | |
parent | 83732bbbae0a6c61592d17081a02be5c07fa66cb (diff) | |
download | gcc-f4f1d408394e08eda23c361eb88200d5e7b2a56f.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43033 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/aclocal.m4')
-rw-r--r-- | boehm-gc/aclocal.m4 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/boehm-gc/aclocal.m4 b/boehm-gc/aclocal.m4 index 0be4e54cf2b..2999e0a421c 100644 --- a/boehm-gc/aclocal.m4 +++ b/boehm-gc/aclocal.m4 @@ -40,10 +40,16 @@ 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, 6.0a7, no-define) +AM_INIT_AUTOMAKE(boehm-gc, 5.1, no-define) # FIXME: We temporarily define our own version of AC_PROG_CC. This is # copied from autoconf 2.12, but does not call AC_PROG_CC_WORKS. We |