diff options
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/configure b/gcc/configure index f80c7e52f24..38960b77685 100755 --- a/gcc/configure +++ b/gcc/configure @@ -4065,14 +4065,14 @@ fi # auto-host.h is the file containing items generated by autoconf and is # the first file included by config.h. null_defines= -host_xm_file="auto-host.h gansidecl.h ${host_xm_file} hwint.h" +host_xm_file="auto-host.h gansidecl.h ${host_xm_file} defaults.h hwint.h" # If host=build, it is correct to have hconfig include auto-host.h # as well. If host!=build, we are in error and need to do more # work to find out the build config parameters. if test x$host = x$build then - build_xm_file="auto-host.h gansidecl.h ${build_xm_file} hwint.h" + build_xm_file="auto-host.h gansidecl.h ${build_xm_file} defaults.h hwint.h" else # We create a subdir, then run autoconf in the subdir. # To prevent recursion we set host and build for the new @@ -4094,11 +4094,11 @@ else mv auto-host.h ../auto-build.h cd .. rm -rf $tempdir - build_xm_file="auto-build.h gansidecl.h ${build_xm_file} hwint.h" + build_xm_file="auto-build.h gansidecl.h ${build_xm_file} defaults.h hwint.h" fi -xm_file="gansidecl.h ${xm_file}" -tm_file="gansidecl.h ${tm_file}" +xm_file="gansidecl.h ${xm_file} defaults.h" +tm_file="gansidecl.h ${tm_file} defaults.h" vars="host_xm_file tm_file tm_p_file xm_file build_xm_file" links="config.h tm.h tm_p.h tconfig.h hconfig.h" @@ -5892,7 +5892,7 @@ out_object_file=`basename $out_file .c`.o tm_file_list= for f in $tm_file; do case $f in - gansidecl.h ) + gansidecl.h | defaults.h) tm_file_list="${tm_file_list} $f" ;; *) tm_file_list="${tm_file_list} \$(srcdir)/config/$f" ;; esac @@ -5901,7 +5901,7 @@ done host_xm_file_list= for f in $host_xm_file; do case $f in - auto-host.h | gansidecl.h | hwint.h ) + auto-host.h | gansidecl.h | defaults.h | hwint.h ) host_xm_file_list="${host_xm_file_list} $f" ;; *) host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f" ;; esac @@ -5910,7 +5910,7 @@ done build_xm_file_list= for f in $build_xm_file; do case $f in - auto-build.h | auto-host.h | gansidecl.h | hwint.h ) + auto-build.h | auto-host.h | gansidecl.h | defaults.h | hwint.h ) build_xm_file_list="${build_xm_file_list} $f" ;; *) build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f" ;; esac |