diff options
-rw-r--r-- | binutils/ChangeLog | 9 | ||||
-rw-r--r-- | binutils/Makefile.in | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 5300fbb..774dbb8 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,12 @@ +Wed Oct 19 14:09:16 1994 Ian Lance Taylor <ian@sanguine.cygnus.com> + + * Makefile.in (check): Add a dummy else clause to the if + statement. + + * objcopy.c (copy_object): Revert yesterday's change. + * binutils.texi, objcopy.1: Remove special mention of --set-start + and `binary' output format. + Tue Oct 18 11:12:01 1994 Ian Lance Taylor <ian@sanguine.cygnus.com> * objcopy.c (copy_object): If the output file format is `binary', diff --git a/binutils/Makefile.in b/binutils/Makefile.in index ea2f5b2..41e395f 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -205,7 +205,7 @@ check: site.exp EXPECT=${EXPECT} ; export EXPECT ; \ if [ -f $$r/../expect/expect ] ; then \ TCL_LIBRARY=$${srcroot}/../tcl/library ; \ - export TCL_LIBRARY ; fi ; \ + export TCL_LIBRARY ; else true; fi ; \ $(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \ $(RUNTESTFLAGS) |