diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-29 11:48:46 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-29 11:51:13 -0400 |
commit | 6dae8a88bf814b8729ad883c92c7b75fdccc7be1 (patch) | |
tree | d0313207f42649f544c6afe734d354da98f48915 /sim/configure.ac | |
parent | 3c0ae3096245fcb94021f0ed61278aa89191ee59 (diff) | |
download | gdb-6dae8a88bf814b8729ad883c92c7b75fdccc7be1.zip gdb-6dae8a88bf814b8729ad883c92c7b75fdccc7be1.tar.gz gdb-6dae8a88bf814b8729ad883c92c7b75fdccc7be1.tar.bz2 |
sim: testsuite: make subdir unconditional
Since the testsuite subdir has to handle dynamic arch values already,
there's no real value in requiring arches to opt in to it. Most have
a testsuite now anyways, and we're requiring it in the future.
Diffstat (limited to 'sim/configure.ac')
-rw-r--r-- | sim/configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sim/configure.ac b/sim/configure.ac index 8c1d914..f1734e3 100644 --- a/sim/configure.ac +++ b/sim/configure.ac @@ -42,9 +42,7 @@ m4_define([SIM_ARCH], [ ]) if test "${enable_sim}" != no; then sinclude(configure.tgt) - if test "$sim_testsuite" = yes; then - AC_CONFIG_SUBDIRS(testsuite) - fi + AC_CONFIG_SUBDIRS(testsuite) if test "$sim_common" = yes; then AC_CONFIG_SUBDIRS(common) fi |