]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
sim: stop configuring common subdir
authorMike Frysinger <vapier@gentoo.org>
Sat, 9 Jan 2016 01:27:46 +0000 (20:27 -0500)
committerMike Frysinger <vapier@gentoo.org>
Sat, 9 Jan 2016 08:52:30 +0000 (03:52 -0500)
Now that cconfig.h doesn't exist, there's no need to build in the common
subdir anymore.  We leave the configure/Makefile files in there as there
is a helper for developers to generate the nltvals.def file.  Once that
gets cleaned up in the future though, we can drop the build logic too.

sim/ChangeLog
sim/configure
sim/configure.ac
sim/configure.tgt

index 93a6ee7c6c4b12acb9fb6acaa74fdb105372831a..30eee38ba572bde37cd3cc9322234d4546af31a8 100644 (file)
@@ -1,3 +1,10 @@
+2016-01-09  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure.ac: Delete sim_common check and the
+       AC_CONFIG_SUBDIRS(common) call.
+       * configure: Regenerate.
+       * configure.tgt (sim_common): Delete the variable.
+
 2016-01-09  Mike Frysinger  <vapier@gentoo.org>
 
        * .gitignore: Delete /common/cconfig.h entry.
index 3447321ffa7befab1b877711e36b008502f7e9d0..2729e698171b1c996a5f99dc83c2720330559ca4 100755 (executable)
@@ -663,7 +663,6 @@ ppc
 ft32
 v850
 testsuite
-common
 igen'
 
 # Initialize some variables set by options.
@@ -3622,7 +3621,6 @@ if test "${enable_sim}" != no; then
 
 
 
-sim_common=yes
 sim_igen=no
 sim_arch=
 case "${target}" in
@@ -3827,19 +3825,11 @@ subdirs="$subdirs aarch64"
 
        sim_igen=yes
        ;;
-   *)
-       # No simulator subdir, so the subdir "common" isn't needed.
-       sim_common=no
-       ;;
 esac
 
 
    subdirs="$subdirs testsuite"
 
-   if test "$sim_common" = yes; then
-      subdirs="$subdirs common"
-
-   fi
    if test "$sim_igen" = yes; then
       subdirs="$subdirs igen"
 
index 39f9c6e179a3a5118f0b511b59357decd9db7790..22db00f734c3a5d6e42bd717d4a62ff9645e0b37 100644 (file)
@@ -43,9 +43,6 @@ m4_define([SIM_ARCH], [
 if test "${enable_sim}" != no; then
    sinclude(configure.tgt)
    AC_CONFIG_SUBDIRS(testsuite)
-   if test "$sim_common" = yes; then
-      AC_CONFIG_SUBDIRS(common)
-   fi
    if test "$sim_igen" = yes; then
       AC_CONFIG_SUBDIRS(igen)
    fi
index 83f6cb2e2ad3a0f99dee24b3e65323ac69d191fb..c958fb317472779bb6ed32761c194a2595db263c 100644 (file)
@@ -11,7 +11,6 @@ dnl the shell level, so use sinclude(...) to pull it in.
 dnl glue to avoid code duplication at top level
 m4_ifndef([SIM_ARCH], [AC_DEFUN([SIM_ARCH],[sim_arch=$1])])
 
-sim_common=yes
 sim_igen=no
 sim_arch=
 case "${target}" in
@@ -102,9 +101,5 @@ case "${target}" in
        SIM_ARCH(v850)
        sim_igen=yes
        ;;
-   *)
-       # No simulator subdir, so the subdir "common" isn't needed.
-       sim_common=no
-       ;;
 esac
 AC_SUBST(sim_arch)