From: amodra Date: Tue, 13 Feb 2007 07:33:32 +0000 (+0000) Subject: * embedspu.sh: Add -W to readelf invocation. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=865e68f23c2ce438b732828dbb5b969018b24040;p=pf3gnuchains%2Fsourceware.git * embedspu.sh: Add -W to readelf invocation. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 5524705fdd..a3d568cc71 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2007-02-13 Alan Modra + + * embedspu.sh: Add -W to readelf invocation. + 2007-02-06 Dave Brolley * MAINTAINERS: Add myself as the maintainer of the MeP port. diff --git a/binutils/embedspu.sh b/binutils/embedspu.sh index b3f8a89ab1..86535b49b7 100644 --- a/binutils/embedspu.sh +++ b/binutils/embedspu.sh @@ -1,7 +1,7 @@ #! /bin/sh # Embed an SPU ELF executable into a PowerPC object file. # -# Copyright 2006 Free Software Foundation, Inc. +# Copyright 2006, 2007 Free Software Foundation, Inc. # # This file is part of GNU Binutils. # @@ -138,7 +138,7 @@ __speelf__: .section .data.spetoe,"aw",@progbits .p2align 7 __spetoe__: -`${READELF} -s ${INFILE} | grep ' _EAR_' | sort -k 2 | awk \ +`${READELF} -s -W ${INFILE} | grep ' _EAR_' | sort -k 2 | awk \ 'BEGIN { \ last_addr = 0; \ last_sym = ""; \