Compilation problem for root 6.09.01 in ubuntu 16.10

Hi,

in ubuntu 16.10
gcc (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005
with latest root git
git checkout -b v6-09-01 v6-09-01
I do a cmake
then make

And I get:
[ 10%] Built target clang-headers
[ 10%] Building CXX object interpreter/cling/lib/Interpreter/CMakeFiles/obj.clingInterpreter.dir/InvocationOptions.cpp.o
In file included from /home/produit/root/interpreter/cling/lib/Interpreter/InvocationOptions.cpp:13:0:
/home/produit/root/interpreter/cling/…/llvm/src/tools/clang/include/clang/Driver/Options.h:41:36: fatal error: clang/Driver/Options.inc: No such file or directory
#include “clang/Driver/Options.inc”

This is a known problem: see ROOT 6 Build From Source Error on Ubuntu 14.04 LTS

Dirty solution:

make -j4

Instead of make.

Clean solution is to update your ROOT sources, a bug fix was recently implemented.

git pull
make

The problem was fixed in the master and v6-08-00-patches branches.

OK
I was able to compile
Thanks