diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-03-31 11:35:30 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-03-31 13:13:13 -0700 |
commit | f85997a697553fb7053de89bafe36e3d71c6f784 (patch) | |
tree | 3d8cd63fbcb21d49670e76d397f19e0af6250585 /zlib/configure.ac | |
parent | 890ba06fb1eae846984a5e56ff8a79ea59108f88 (diff) | |
download | gdb-f85997a697553fb7053de89bafe36e3d71c6f784.zip gdb-f85997a697553fb7053de89bafe36e3d71c6f784.tar.gz gdb-f85997a697553fb7053de89bafe36e3d71c6f784.tar.bz2 |
Use AM_ENABLE_MULTILIB only if with_target_subdir isn't empty
* configure.ac (AM_ENABLE_MULTILIB): Use only if
${with_target_subdir} isn't empty.
* configure: Regenerated.
Diffstat (limited to 'zlib/configure.ac')
-rw-r--r-- | zlib/configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zlib/configure.ac b/zlib/configure.ac index fb8d943..57d6fa5 100644 --- a/zlib/configure.ac +++ b/zlib/configure.ac @@ -4,7 +4,9 @@ AC_PREREQ(2.64) AC_INIT AC_CONFIG_SRCDIR([zlib.h]) -AM_ENABLE_MULTILIB(, ..) +if test -n "${with_target_subdir}"; then + AM_ENABLE_MULTILIB(, ..) +fi AC_CANONICAL_SYSTEM |