From: Richard Stallman Date: Thu, 29 Jul 1993 00:15:21 +0000 (+0000) Subject: (compare): Add ./ in tail command. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9825189b2eee77d5851773be490af87fae2252c5;p=gcc.git (compare): Add ./ in tail command. From-SVN: r5035 --- 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