Explorar o código

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>
Marcelo Roberto Jimenez %!s(int64=14) %!d(string=hai) anos
pai
achega
1fbd9ef813
Modificáronse 2 ficheiros con 6 adicións e 1 borrados
  1. 5 1
      CHANGES
  2. 1 0
      package/Makefile.in

+ 5 - 1
CHANGES

@@ -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.

+ 1 - 0
package/Makefile.in

@@ -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)" \