From 9825189b2eee77d5851773be490af87fae2252c5 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Thu, 29 Jul 1993 00:15:21 +0000 Subject: [PATCH] (compare): Add ./ in tail command. From-SVN: r5035 --- gcc/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index e269bc43161..647b19d2c26 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1901,9 +1901,10 @@ bootstrap3: force # Compare the object files in the current directory with those in the # stage2 directory. +# ./ avoids bug in some versions of tail. compare: force for file in *.o; do \ - tail +16c $$file > tmp-foo1; \ + tail +16c ./$$file > tmp-foo1; \ tail +16c stage2/$$file > tmp-foo2 2>/dev/null \ && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \ done -- 2.30.2