* Makefile.in: Avoid bug in hpux sed.

This commit is contained in:
Jeff Law 1994-03-20 23:40:41 +00:00
parent 5029b1148d
commit 4e85e79f4f
4 changed files with 8 additions and 2 deletions

View File

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

View File

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

View File

@ -1,3 +1,7 @@
Sun Mar 20 15:40:21 1994 Jeffrey A. Law (law@cygnus.com)
* Makefile.in: Avoid bug in hpux sed.
Wed Dec 15 20:16:40 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
* gprof.texi (Invoking): add text about -v flag

View File

@ -83,7 +83,7 @@ install-info:
install:
$(INSTALL_XFORM) gprof $(bindir)/gprof
$(INSTALL_XFORM1) $(srcdir)/gprof.1 $(man1dir)/gprof.1
-n=`t='$(program_transform_name)'; echo gprof | sed -e "" $$t`; \
-n=`t='$(program_transform_name)'; echo gprof | sed -e "s/brokensed/brokensed/" $$t`; \
rm -f $(tooldir)/bin/gprof; \
ln $(bindir)/$$n $(tooldir)/bin/gprof \
|| $(INSTALL_PROGRAM) gprof $(tooldir)/bin/gprof;