Browse Source

PR binutils/12820

* configure.in (BUILD_INSTALL_MISC): Only add embedspu once.
	* configure: Regenerate.
binutils-2_22-branch
Alan Modra 15 years ago
parent
commit
1ab52cbe05
  1. 5
      binutils/ChangeLog
  2. 7
      binutils/configure
  3. 5
      binutils/configure.in

5
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

7
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)'

5
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)'

Loading…
Cancel
Save