diff options
author | Jeff Law <law@redhat.com> | 1994-03-20 23:40:41 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-03-20 23:40:41 +0000 |
commit | 4e85e79f4faeaeeb08f28d0877e6d250c8831a71 (patch) | |
tree | 084d2097c520f753e0eb6ee875403755c9bbd3db /binutils | |
parent | 5029b1148daf3d494c69da9f5736b5cc17d5f6fe (diff) | |
download | gdb-4e85e79f4faeaeeb08f28d0877e6d250c8831a71.zip gdb-4e85e79f4faeaeeb08f28d0877e6d250c8831a71.tar.gz gdb-4e85e79f4faeaeeb08f28d0877e6d250c8831a71.tar.bz2 |
* Makefile.in: Avoid bug in hpux sed.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 2 | ||||
-rw-r--r-- | binutils/Makefile.in | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ebd52e3..1ff23b0 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,7 @@ Sun Mar 20 11:26:36 1994 Jeffrey A. Law (law@snake.cs.utah.edu) + * Makefile.in: Avoid bug in hpux sed. + * objcopy.c: Changes to keep it from stripping symbols used in output relocations. (mark_symbols_used_in_relocations): New function. Mark symbols diff --git a/binutils/Makefile.in b/binutils/Makefile.in index c460035..09fdf8b 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -295,7 +295,7 @@ nlmheader.c: nlmheader.y -mv y.tab.c nlmheader.c nlmconv.o: nlmconv.c - ldname=`t='$(program_transform_name)'; echo ld | sed -e "" $$t`; \ + ldname=`t='$(program_transform_name)'; echo ld | sed -e "s/brokensed/brokensed/" $$t`; \ $(CC) -c -DLD_NAME="\"$${ldname}\"" $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) $(srcdir)/nlmconv.c $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD) |