On Sun, Jan 27, 2008 at 05:10:17PM -0500, bfields wrote:
> OK.  I've got a machine running
> 
>       for c in $(git rev-list origin..linux-nfs/nfs-server-stable^); do
>               git checkout $c
>               make -s -j4
>       done
> 
> now just to make sure....  Thanks again!

Pfft, that should have been:

        for c in $(git rev-list --reverse 
origin..linux-nfs/nfs-server-stable^); do
                git checkout $c
                make -s -j4
        done

The results are a lot easier to understand if you do the compiles
in chronological order!

Anyway, that found one more compile failure, now fixed.  Hopefully
that's the last.  (Probably I did an incomplete job of reordering one of
the patches the other week....)

--b.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to