diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-03-16 08:12:46 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-03-16 08:12:59 -0700 |
commit | 35fece71d50e1883e67fcd28c69245de4335b8b5 (patch) | |
tree | 29b05647574d3e588b0214215f4e0357b7993c9b /configure | |
parent | Fetch all registers before writing the core register notes. (diff) | |
download | binutils-gdb-35fece71d50e1883e67fcd28c69245de4335b8b5.tar.gz binutils-gdb-35fece71d50e1883e67fcd28c69245de4335b8b5.tar.bz2 binutils-gdb-35fece71d50e1883e67fcd28c69245de4335b8b5.zip |
Disable all target libraries if not building gcc
Don't build target libraries if not building gcc.
* configure.ac (target_configdirs): Unset if not building gcc.
* configure: Regenerated.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure index d075cf36b9c..5caf82b08c8 100755 --- a/configure +++ b/configure @@ -6614,6 +6614,9 @@ Supported languages are: ${potential_languages}" "$LINENO" 5 ac_configure_args=`echo " $ac_configure_args" | sed -e "s/ '--enable-languages=[^ ]*'//g" -e "s/$/ '--enable-languages="$enable_languages"'/" ` +else + # Disable all target libraries if not building gcc. + target_configdirs= fi # Handle --disable-<component> generically. |