diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2022-09-20 14:27:05 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2022-10-20 11:42:46 +0200 |
commit | 25861cf3a88a07c8dca3fb32d098c0ad756bbe38 (patch) | |
tree | 6290768a96d2446a312539971345dfc9087c10f4 /gcc | |
parent | df99e9e42094dee0833ac38f53e7fae09b4d133c (diff) | |
download | gcc-25861cf3a88a07c8dca3fb32d098c0ad756bbe38.zip gcc-25861cf3a88a07c8dca3fb32d098c0ad756bbe38.tar.gz gcc-25861cf3a88a07c8dca3fb32d098c0ad756bbe38.tar.bz2 |
Make 'autoreconf' work for 'gcc', 'libobjc'
With that, we may then run plain 'autoreconf' for all of GCC's subpackages,
instead of for some of those (that don't use Automake) manually having to run
the applicable combination of 'aclocal', 'autoconf', 'autoheader'.
See also 'AC_CONFIG_MACRO_DIRS'/'AC_CONFIG_MACRO_DIR' usage elsewhere.
gcc/
* configure.ac (AC_CONFIG_MACRO_DIRS): Instantiate.
* configure: Regenerate.
libobjc/
* configure.ac (AC_CONFIG_MACRO_DIRS): Instantiate.
* configure: Regenerate.
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/configure | 5 | ||||
-rw-r--r-- | gcc/configure.ac | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index 2ce51a8..c6def4c 100755 --- a/gcc/configure +++ b/gcc/configure @@ -3333,6 +3333,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + ac_config_headers="$ac_config_headers auto-host.h:config.in" @@ -19713,7 +19714,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 19716 "configure" +#line 19717 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -19819,7 +19820,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 19822 "configure" +#line 19823 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/gcc/configure.ac b/gcc/configure.ac index e1ef2ec..45bf756 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -25,6 +25,7 @@ AC_INIT AC_CONFIG_SRCDIR(tree.cc) +AC_CONFIG_MACRO_DIRS([../config] [..]) AC_CONFIG_HEADER(auto-host.h:config.in) gcc_version=`cat $srcdir/BASE-VER` |