From: steven Date: Mon, 24 May 2010 20:18:00 +0000 (+0000) Subject: * configure.ac (all_lang_makefiles): Remove everything related to it. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75f488d09fee833e2f856c7342e5e3347c1667de;p=thirdparty%2Fgcc.git * configure.ac (all_lang_makefiles): Remove everything related to it. * configure: Regenerate. * Makefile.in: Fix reference to ada Make-lang.in. Remove support for LANG_MAKEFILES. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159795 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 88061781c5d9..2ca56d190732 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2010-05-24 Steven Bosscher + + * configure.ac (all_lang_makefiles): Remove everything related to it. + * configure: Regenerate. + * Makefile.in: Fix reference to ada Make-lang.in. + Remove support for LANG_MAKEFILES. + 2010-05-24 Joseph Myers * diagnostic.c: Don't include flags.h. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ef7a324b9cd3..8f448819ded3 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1020,7 +1020,7 @@ BACKENDLIBS = $(CLOOGLIBS) $(PPLLIBS) $(GMPLIBS) $(PLUGINLIBS) $(HOST_LIBS) \ # Any system libraries needed just for GNAT. SYSLIBS = @GNAT_LIBEXC@ -# Used from ada/Make-lang.in +# Used from ada/gcc-interface/Make-lang.in GNATBIND = @GNATBIND@ GNATMAKE = @GNATMAKE@ @@ -1055,7 +1055,6 @@ INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ # C can be supported this way too (leave for later). LANG_MAKEFRAGS = @all_lang_makefrags@ -LANG_MAKEFILES = @all_lang_makefiles@ # Flags to pass to recursive makes. # CC is set by configure. diff --git a/gcc/configure b/gcc/configure index 8013a15079a9..9fce3a901e27 100755 --- a/gcc/configure +++ b/gcc/configure @@ -662,7 +662,6 @@ build_install_headers_dir build_exeext all_selected_languages all_languages -all_lang_makefiles all_lang_makefrags all_gtfiles all_compilers @@ -17108,7 +17107,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 17111 "configure" +#line 17110 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -17214,7 +17213,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 17217 "configure" +#line 17216 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -25127,8 +25126,6 @@ all_compilers= all_outputs='Makefile gccbug' # List of language makefile fragments. all_lang_makefrags= -# List of language subdirectory makefiles. Deprecated. -all_lang_makefiles= # Additional files for gengtype all_gtfiles="$target_gtfiles" @@ -25220,9 +25217,6 @@ do if test -f $srcdir/$gcc_subdir/$subdir-tree.def; then lang_tree_files="$lang_tree_files $srcdir/$gcc_subdir/$subdir-tree.def" fi - if test -f ${srcdir}/$gcc_subdir/Makefile.in - then all_lang_makefiles="$gcc_subdir/Makefile" - fi all_languages="$all_languages $language" all_compilers="$all_compilers $compilers" all_outputs="$all_outputs $outputs" @@ -25388,7 +25382,6 @@ fi - # Echo link setup. diff --git a/gcc/configure.ac b/gcc/configure.ac index a80900c7c444..fdb0d3025a24 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -4232,8 +4232,6 @@ all_compilers= all_outputs='Makefile gccbug' # List of language makefile fragments. all_lang_makefrags= -# List of language subdirectory makefiles. Deprecated. -all_lang_makefiles= # Additional files for gengtype all_gtfiles="$target_gtfiles" @@ -4327,9 +4325,6 @@ changequote([,])dnl if test -f $srcdir/$gcc_subdir/$subdir-tree.def; then lang_tree_files="$lang_tree_files $srcdir/$gcc_subdir/$subdir-tree.def" fi - if test -f ${srcdir}/$gcc_subdir/Makefile.in - then all_lang_makefiles="$gcc_subdir/Makefile" - fi all_languages="$all_languages $language" all_compilers="$all_compilers $compilers" all_outputs="$all_outputs $outputs" @@ -4435,7 +4430,6 @@ AC_SUBST(srcdir) AC_SUBST(all_compilers) AC_SUBST(all_gtfiles) AC_SUBST(all_lang_makefrags) -AC_SUBST(all_lang_makefiles) AC_SUBST(all_languages) AC_SUBST(all_selected_languages) AC_SUBST(build_exeext)