xen/build: silence make warnings about missing auto.conf*
authorAnthony PERARD <anthony.perard@citrix.com>
Mon, 27 Apr 2020 07:31:13 +0000 (09:31 +0200)
committerJan Beulich <jbeulich@suse.com>
Mon, 27 Apr 2020 07:31:13 +0000 (09:31 +0200)
commit8d4c17a90b0a9b3d82628461090a54a2c7897154
tree8d6be18e36c649e8c7274313c7179a01ad2ac242
parentd0ee8e9ca4d4163e42dcd5f1cf13e4fae30a4190
xen/build: silence make warnings about missing auto.conf*

In a clean tree, both files include/config/auto.conf{,.cmd} are
missing and older version of GNU Make complain about it:
    Makefile:103: include/config/auto.conf: No such file or directory
    Makefile:106: include/config/auto.conf.cmd: No such file or directory

Those warnings are harmless, make will create the files and start over. But
to avoid confusion, we'll use "-include" to silence the warning.

Those warning started to appear with commit 6c122d3984a5 ("xen/build:
include include/config/auto.conf in main Makefile").

Reported-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
xen/Makefile