diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-02-21 23:35:46 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-04-02 23:35:47 -0400 |
commit | b6b1c790843087e67e85e7cfd3327a872c03c6bc (patch) | |
tree | 761f7448c55252958c11490910ec256c8150b08f /sim/configure.ac | |
parent | c2783492b62faa62bc501ffdd18fa0b6aa8d64b6 (diff) | |
download | fsf-binutils-gdb-b6b1c790843087e67e85e7cfd3327a872c03c6bc.zip fsf-binutils-gdb-b6b1c790843087e67e85e7cfd3327a872c03c6bc.tar.gz fsf-binutils-gdb-b6b1c790843087e67e85e7cfd3327a872c03c6bc.tar.bz2 |
sim: igen: merge build into top level
This simplifies the build a bit (especially for deps in port subdirs),
and avoids recursive make. This in turn speeds up the build, and sets
us up for multi-target.
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 e233f9c..48d812b 100644 --- a/sim/configure.ac +++ b/sim/configure.ac @@ -123,10 +123,8 @@ if test "${enable_sim}" != no; then sim_igen=yes ;; esac - if test "$sim_igen" = yes; then - AC_CONFIG_SUBDIRS(igen) - fi fi +AM_CONDITIONAL([SIM_ENABLE_IGEN], [test "$sim_igen" = "yes"]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT |