Empty files ending up installed

Hello all!

I have found following empty files that get installed (v3.4rc2) :

docs/llvm/html/Dummy.html
include/clang/Driver/CC1Options.h

What is the story behind them? Or were they just forgotten?

Can we (someone) remove these?

Cheers,

    Gabor

I deleted CC1Options.h in r196410. It looks like a previous patch
made it empty instead of removing it.

Taking a look at Dummy.html.

Cheers,
Rafael

Hello all!

I have found following empty files that get installed (v3.4rc2) :

docs/llvm/html/Dummy.html
include/clang/Driver/CC1Options.h

What is the story behind them? Or were they just forgotten?

Dummy.html is there because when I finished the docs conversion to Sphinx,
there were no remaining HTML files in docs/, which caused the existing
`make install` of the autotools build to error out because it looked for
HTML files (I don't use the autotools build so I didn't notice the issue;
Dmitri is the one that fixed it with the Dummy.html hack). I tried properly
fixing the situation (generating and installing the Sphinx docs), but my
build-system-fu is very weak and I never finished that.

Btw, the CMake build isn't any better in this regard. It doesn't even try
to install docs :stuck_out_tongue:

-- Sean Silva