From 880502a63123ee1c1d4e79afe1cf1ae705775e2f Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 31 May 2011 08:55:55 +0000 Subject: [PATCH] PR binutils/12820 * configure.in (BUILD_INSTALL_MISC): Only add embedspu once. * configure: Regenerate. --- binutils/ChangeLog | 5 +++++ binutils/configure | 5 ++++- binutils/configure.in | 5 ++++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 9dc20d43255..3ac9a28117e 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2011-05-31 Matthias Klose + + * configure.in (BUILD_INSTALL_MISC): Only add embedspu once. + * configure: Regenerate. + 2011-05-30 Alan Modra PR binutils/12820 diff --git a/binutils/configure b/binutils/configure index 02b05fbf154..0688f380bf6 100755 --- a/binutils/configure +++ b/binutils/configure @@ -13905,7 +13905,10 @@ do BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)' ;; powerpc*-*-linux* | powerpc*-*-elf* | powerpc*-*-eabi*) - BUILD_INSTALL_MISC="${BUILD_INSTALL_MISC} embedspu" + case "$BUILD_INSTALL_MISC" in + *embedspu*) ;; + *) BUILD_INSTALL_MISC="${BUILD_INSTALL_MISC} embedspu" + esac ;; sh*-*-pe) BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)' diff --git a/binutils/configure.in b/binutils/configure.in index 99fc22d6f39..b64854de19b 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -307,7 +307,10 @@ changequote([,])dnl BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)' ;; powerpc*-*-linux* | powerpc*-*-elf* | powerpc*-*-eabi*) - BUILD_INSTALL_MISC="${BUILD_INSTALL_MISC} embedspu" + case "$BUILD_INSTALL_MISC" in + *embedspu*) ;; + *) BUILD_INSTALL_MISC="${BUILD_INSTALL_MISC} embedspu" + esac ;; sh*-*-pe) BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)' -- 2.47.3