* Makefile.in (comparison): Only check *.o; we don't care if timestamps

inserted by the native linker differ.
This commit is contained in:
Ken Raeburn 1995-10-06 00:57:16 +00:00
parent d89861c7c4
commit 6b0a6eaa68
2 changed files with 7 additions and 2 deletions

View file

@ -1,5 +1,8 @@
Thu Oct 5 20:17:30 1995 Ken Raeburn <raeburn@cygnus.com> Thu Oct 5 20:17:30 1995 Ken Raeburn <raeburn@cygnus.com>
* Makefile.in (comparison): Only check *.o; we don't care if
timestamps inserted by the native linker differ.
* config/tc-alpha.c (alpha_align): Only fill with a no-op pattern * config/tc-alpha.c (alpha_align): Only fill with a no-op pattern
if alignment stricter than 4 bytes is requested; in that case, if alignment stricter than 4 bytes is requested; in that case,
align to a 4-byte boundary first. align to a 4-byte boundary first.

View file

@ -430,7 +430,9 @@ distclean: clean-here
-rm -f config.status Makefile targ-env.h targ-cpu.h \ -rm -f config.status Makefile targ-env.h targ-cpu.h \
targ-cpu.c obj-format.h obj-format.c atof-targ.c TAGS \ targ-cpu.c obj-format.h obj-format.c atof-targ.c TAGS \
config-stamp config.h conf config.log config.cache .gdbinit config-stamp config.h conf config.log config.cache .gdbinit
realclean: clean distclean maintainer-clean realclean: clean distclean
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
-rm -rf $(DISTSTUFF) -rm -rf $(DISTSTUFF)
# Entry points `install', `includes' and `uninstall'. # Entry points `install', `includes' and `uninstall'.
@ -508,7 +510,7 @@ against=stage2
# temporary assembly file names. # temporary assembly file names.
comparison: force comparison: force
x=0 ; \ x=0 ; \
for file in $(STAGESTUFF) ; do \ for file in *.o ; do \
tail +16c ./$$file > tmp-foo1; \ tail +16c ./$$file > tmp-foo1; \
if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \ if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
if cmp tmp-foo1 tmp-foo2 ; then \ if cmp tmp-foo1 tmp-foo2 ; then \