aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure5
-rw-r--r--configure.ac5
2 files changed, 8 insertions, 2 deletions
diff --git a/configure b/configure
index cb52d4e9..96861afb 100755
--- a/configure
+++ b/configure
@@ -3752,7 +3752,10 @@ packages="texinfo gawk"
if test ${deb} -ge 1; then
# add Ubuntu specific packages
if test x"${BUILD_ARCH}" != xaarch64; then
- packages="${packages} gcc-multilib g++-multilib libncurses5-dev libpython2.7-dev"
+ packages="${packages} libncurses5-dev libpython2.7-dev"
+ if test x"${BUILD_ARCH}" = x"x86_64"; then
+ packages="${packages} gcc-multilib g++-multilib"
+ fi
fi
for i in ${packages}; do
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $i is installed" >&5
diff --git a/configure.ac b/configure.ac
index e9f931ee..0bc33efc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -175,7 +175,10 @@ packages="texinfo gawk"
if test ${deb} -ge 1; then
# add Ubuntu specific packages
if test x"${BUILD_ARCH}" != xaarch64; then
- packages="${packages} gcc-multilib g++-multilib libncurses5-dev libpython2.7-dev"
+ packages="${packages} libncurses5-dev libpython2.7-dev"
+ if test x"${BUILD_ARCH}" = x"x86_64"; then
+ packages="${packages} gcc-multilib g++-multilib"
+ fi
fi
for i in ${packages}; do
AC_MSG_CHECKING([if $i is installed])