diff options
author | Bill Cox <bill@cygnus> | 1994-05-13 17:52:46 +0000 |
---|---|---|
committer | Bill Cox <bill@cygnus> | 1994-05-13 17:52:46 +0000 |
commit | f666bb79cad1b5cbd693a9e1c3c9d37e3c895d16 (patch) | |
tree | 74fc38f74ca57aac4798c95ec45744f8be55b409 /bfd/Makefile.in | |
parent | 439a3604ae0f5ebef5b0311ae235e066523e228c (diff) | |
download | gdb-f666bb79cad1b5cbd693a9e1c3c9d37e3c895d16.zip gdb-f666bb79cad1b5cbd693a9e1c3c9d37e3c895d16.tar.gz gdb-f666bb79cad1b5cbd693a9e1c3c9d37e3c895d16.tar.bz2 |
* Makefile.in (stmp-bfd.h): Add an 'if' to mask a harmless
grep error. Already in progressive/bfd/Makefile.in.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index c95415e..26400bf 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -478,7 +478,8 @@ $(BFD_H): stmp-bfd.h ; @true # If the file is still there, kill it. stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile rm -f bfd.h-new 64 ../include/bfd.h - grep BFD_HOST_64_BIT sysdep.h > 64 2>/dev/null || exit 0 + if grep BFD_HOST_64_BIT sysdep.h > 64 2>/dev/null ; then true ; \ + else touch 64 ; fi sed -e 's/@WORDSIZE@/$(WORDSIZE)/' \ -e "s/@VERSION@/`cat $(srcdir)/VERSION`/" \ -e '/64-bit.*sysdep.h/ r 64' \ |