diff options
author | Per Bothner <per@bothner.com> | 1993-02-25 23:59:10 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-02-25 23:59:10 +0000 |
commit | 3048fb38f06fb641ac92c042f18786d672749491 (patch) | |
tree | d6611da97d1760ddc971be3276e3a4997f5777e3 /binutils/Makefile.in | |
parent | 26483cc66833be3304f03529ac94447822bed9e1 (diff) | |
download | gdb-3048fb38f06fb641ac92c042f18786d672749491.zip gdb-3048fb38f06fb641ac92c042f18786d672749491.tar.gz gdb-3048fb38f06fb641ac92c042f18786d672749491.tar.bz2 |
* ardup.c: Add extern declaration of strdup.
* Makefile.in (testsuite): Add 'else true' since otherwise
Ultrix /bin/sh complains.
Diffstat (limited to 'binutils/Makefile.in')
-rw-r--r-- | binutils/Makefile.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 03e86ee..5fd2730 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -147,13 +147,11 @@ OPCODES = $(OPCODEDIR)/libopcodes.a all: $(ADDL_LIBS) $(PROGS) testsuite testsuite: - echo "testsuite"; \ - if [ -d testsuite ]; then \ + if [ -d testsuite ]; then \ (rootme=`pwd`/ ; export rootme ; \ rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \ cd testsuite; $(MAKE) $(FLAGS_TO_PASS)); \ - fi; \ - + else true ; fi check: all /bin/sh $(srcdir)/sanity.sh . |