diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-12-30 13:29:02 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-01-14 15:24:33 -0500 |
commit | a100e80fc9a9243c913035c3d40bf8ec4dc5c6fc (patch) | |
tree | 99759688c13aa1ad42c8aa5f713a2fc9347bf220 /newlib/libc/sys/decstation/configure | |
parent | 909ed837ccb932ea70f71cc41891fa2c8143133f (diff) | |
download | newlib-a100e80fc9a9243c913035c3d40bf8ec4dc5c6fc.zip newlib-a100e80fc9a9243c913035c3d40bf8ec4dc5c6fc.tar.gz newlib-a100e80fc9a9243c913035c3d40bf8ec4dc5c6fc.tar.bz2 |
require autoconf-2.69 exactly
The newlib & libgloss dirs are already generated using autoconf-2.69.
To avoid merging new code and/or accidental regeneration using diff
versions, leverage config/override.m4 to pin to 2.69 exactly. This
matches what gcc/binutils/gdb are already doing.
The README file already says to use autoconf-2.69.
To accomplish this, it's just as simple as adding -I flags to the
top-level config/ dir when running aclocal. This is because the
override.m4 file overrides AC_INIT to first require the specific
autoconf version before calling the real AC_INIT.
Diffstat (limited to 'newlib/libc/sys/decstation/configure')
-rwxr-xr-x | newlib/libc/sys/decstation/configure | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/libc/sys/decstation/configure b/newlib/libc/sys/decstation/configure index 5fae260..db1133b 100755 --- a/newlib/libc/sys/decstation/configure +++ b/newlib/libc/sys/decstation/configure @@ -1833,6 +1833,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + ac_aux_dir= for ac_dir in ../../../.. "$srcdir"/../../../..; do if test -f "$ac_dir/install-sh"; then |