diff options
author | Alan Modra <amodra@gmail.com> | 2011-05-31 08:54:47 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-05-31 08:54:47 +0000 |
commit | 1ab52cbe0549166fc916f60dc4e666c97ad8b113 (patch) | |
tree | 391ea39f185c7cf41acab204e76696bf8fb2c2a9 /binutils | |
parent | 8dbe1edcd323bb950802a9fb3286bb780d9c0d7f (diff) | |
download | gdb-1ab52cbe0549166fc916f60dc4e666c97ad8b113.zip gdb-1ab52cbe0549166fc916f60dc4e666c97ad8b113.tar.gz gdb-1ab52cbe0549166fc916f60dc4e666c97ad8b113.tar.bz2 |
PR binutils/12820
* configure.in (BUILD_INSTALL_MISC): Only add embedspu once.
* configure: Regenerate.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rwxr-xr-x | binutils/configure | 7 | ||||
-rw-r--r-- | binutils/configure.in | 5 |
3 files changed, 14 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0b445f0..feacd34 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2011-05-31 Matthias Klose <doko@ubuntu.com> + + * configure.in (BUILD_INSTALL_MISC): Only add embedspu once. + * configure: Regenerate. + 2011-05-30 Alan Modra <amodra@gmail.com> PR binutils/12820 diff --git a/binutils/configure b/binutils/configure index 003b6f1..1a4a1ef 100755 --- a/binutils/configure +++ b/binutils/configure @@ -13800,7 +13800,7 @@ do fi DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386" BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)' - od_vectors="$od_vectors objdump_private_desc_xcoff" + od_vectors="$od_vectors objdump_private_desc_xcoff" else case $targ in i[3-7]86*-*-netware*) @@ -13895,7 +13895,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 4a03c75..965d66c 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -304,7 +304,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)' |