package/Makefile.in: Add OBJDUMP=$(TARGET_OBJDUMP) to TARGET_CONFIGURE_OPTS

Closes #2857

The OBJDUMP was missing from TARGET_CONFIGURE_OPTS, this patch adds it
to the proper place in package/Makefile.in.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Marcelo Roberto Jimenez 2010-11-25 15:38:31 -02:00 committed by Peter Korsgaard
parent 33da52a52b
commit 1fbd9ef813
2 changed files with 6 additions and 1 deletions

View File

@ -1,9 +1,13 @@
2010.11, Not yet released:
Fixes all over the tree.
Fixes all over the tree.
Updated/fixed packages: qt, xserver-xorg
Issues resolved (http://bugs.uclibc.org):
#2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
2010.11-rc2, Released November 25th, 2010:
Fixes all over the tree.

View File

@ -192,6 +192,7 @@ TARGET_CONFIGURE_OPTS=PATH=$(TARGET_PATH) \
RANLIB="$(TARGET_RANLIB)" \
STRIP="$(TARGET_STRIP)" \
OBJCOPY="$(TARGET_OBJCOPY)" \
OBJDUMP="$(TARGET_OBJDUMP)" \
AR_FOR_BUILD="$(HOSTAR)" \
AS_FOR_BUILD="$(HOSTAS)" \
CC_FOR_BUILD="$(HOSTCC)" \