mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
* Makefile.in (stmp-bfd.h): Add an 'if' to mask a harmless
grep error. Already in progressive/bfd/Makefile.in.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Fri May 13 10:43:51 1994 Bill Cox (bill@rtl.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in (stmp-bfd.h): Add an 'if' to mask a harmless
|
||||||
|
grep error. Already in progressive/bfd/Makefile.in.
|
||||||
|
|
||||||
Fri May 13 10:51:21 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Fri May 13 10:51:21 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
* config/mipsbelf.mt (SELECT_VECS): Add ecoff_big_vec and
|
* config/mipsbelf.mt (SELECT_VECS): Add ecoff_big_vec and
|
||||||
|
@ -478,7 +478,8 @@ $(BFD_H): stmp-bfd.h ; @true
|
|||||||
# If the file is still there, kill it.
|
# If the file is still there, kill it.
|
||||||
stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile
|
stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile
|
||||||
rm -f bfd.h-new 64 ../include/bfd.h
|
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)/' \
|
sed -e 's/@WORDSIZE@/$(WORDSIZE)/' \
|
||||||
-e "s/@VERSION@/`cat $(srcdir)/VERSION`/" \
|
-e "s/@VERSION@/`cat $(srcdir)/VERSION`/" \
|
||||||
-e '/64-bit.*sysdep.h/ r 64' \
|
-e '/64-bit.*sysdep.h/ r 64' \
|
||||||
|
Reference in New Issue
Block a user